blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50
values | src_encoding stringclasses 23
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 1
class | length_bytes int64 5 10.4M | extension stringclasses 29
values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6f3e2b76dc98bef3067e36087166df1c89a58ea7 | 6b85d1958ff11075634ed9e0f6dbef2de9548f1b | /ANN_Toolbox/macros/ann_FF_grad_nb.sci | 57ce574b25d6625b108178bd72b21b17d1970adc | [
"Unlicense"
] | permissive | ademarazn/REDES_NEURAIS | 8a048c13aab33daa4068f52e18b263cc8325884f | a9a35744476d1f7e8405df04d5e4a9f8e4ed4595 | refs/heads/master | 2021-05-06T13:09:56.514632 | 2018-04-25T18:49:30 | 2018-04-25T18:49:30 | 113,248,743 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,803 | sci | ann_FF_grad_nb.sci | function grad_E = ann_FF_grad_nb(x,t,N,W,dW,af,ef)
// This file is part of:
// ANN Toolbox for Scilab 5.x
// Copyright (C) Ryurick M. Hristev
// updated by Allan CORNET INRIA, May 2008
// released under GNU Public licence version 2
// Calculates the error gradient following a finite difference procedure,
// i.e. perturbing each weight in turn;
// used for --- testing --- purposes only as is much slower than BP algorithm.
// this function is designed for networks without bias
// The gradient is calculated only for all patterns in "x" and "t"
// see ANN_FF (help)
[lsh,rsh] = argn(0);
// define optional parameters if necessary
if rsh < 6, af = 'ann_log_activ', end;
if rsh < 7, ef = 'ann_sum_of_sqr', end;
// create the return matrix
grad_E = hypermat(size(W)');
// rl - run between layers, parameter for ann_FF_run function
rl = [2,size(N,'c')];
// for each pattern
for p = 1 : size(x,'c')
// for each layer
for l = 2 : size(N,'c')
// for each neuron in layer
for n = 1 : N(l)
// for each connection to previous layer
for i = 1 : N(l-1)
// hold the old value of W
temp = W(n,i,l-1);
// change W value
W(n,i,l-1) = temp - dW;
// run the net
y = ann_FF_run_nb(x(:,p),N,W,rl,af);
// calculate new error, to the "left"
execstr('err_n = ' + ef + '(y,t(:,p))');
// change W value
W(n,i,l-1) = temp + dW;
// run the net
y = ann_FF_run_nb(x(:,p),N,W,rl,af);
// calculate new error, to the "right"
execstr('err_p = ' + ef + '(y,t(:,p))');
// "2" because \Delta w = 2 * dW
grad_E(n,i,l-1) = ...
grad_E(n,i,l-1) + (err_p - err_n) / (2 * dW);
// restore W
W(n,i,l-1) = temp;
end;
end;
end;
end;
endfunction
|
b4cc16d77d3654be8b0bf6ec02977e3d3c5cf139 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1217/CH5/EX5.5/Exa5_5.sce | b90eed25ba743b0ceaf796f64558f914b81337b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 773 | sce | Exa5_5.sce | // Exa 5.5
clc;
clear;
close;
// given data
Vo=7.5;//in Volt
fo=1;// in KHz
DutyCycle=60;//in %
disp("Zener diioe has to be used at the output to limit the output at +7.5 volt or -7.5 volt.");
disp("Thus choose Vz=Vz1=Vz2=6.8 volt as VD=0.7 volt")
Vz=6.8;// in volt
Vz1=6.8;// in volt
Vz2=6.8;// in volt
VD=0.7;// in volt
T=1/fo;//in mSec
// duty cycle 60% gives Ton & Toff
Ton=0.6*T;//in mSec
Toff=T-Ton;//in mSec
// choosing R2=1.16*R1
R1=1;//in Kohm
C=0.1;//in uF
R2=1.16*R1;//in Kohm
R3=Ton*10^-3/(C*10^-6);//in ohm
R4=Toff*10^-3/(C*10^-6);//in ohm
disp(R1,"Value of R1 in Kohm is ; ")
disp(R2,"Value of R2 in Kohm is ; ")
disp(R3/1000,"Value of R3 in Kohm is ; ")
disp(R4/1000,"Value of R4 in Kohm is ; ")
disp(C,"Value of C in uF is ; "); |
62aefcc8b0a2afcfee6e1e5405ead64867277695 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH7/EX7.45/ch7_45.sci | 884e675a5d32534cc81050c45a852f46408f01a4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 320 | sci | ch7_45.sci | //to calculate the ratio of full load speed to no load speed
clc;
V=400;
Rf=200;
If=V/Rf;
Inl=5.6;
I_a0=Inl-If;
vd=2; //voltage drop
Ra=.18;
E_a0=V-Ra*I_a0-vd;
Ifl=68.3;
Iafl=Ifl-If;
E_afl=V-Ra*Iafl-vd;
e=.03; //armature rxn weakens the field by 3%
k=(E_afl/E_a0)*(1/(1-e));
disp(k,'n_fl/n_nl');
|
5c67fe87e4770d666880eac1851fe9dfb5d26007 | 2ae858a680a4ccf8a2ec89a45a1e48a0292d8eab | /macros/epipolarlines.sci | 6df56088e72f9174b90393e070aef7d65063e1c5 | [] | no_license | shreyneil/FOSSEE-Image-Processing-Toolbox | f315a82c325b2d6cbd0611689f3e30071a38490d | dd1cbd0dcbe0c3dd11d6ce1ab205b4b72011ae56 | refs/heads/master | 2020-12-02T16:26:13.755637 | 2017-07-07T19:22:33 | 2017-07-07T19:22:33 | 96,552,147 | 0 | 0 | null | 2017-07-07T15:32:15 | 2017-07-07T15:32:15 | null | UTF-8 | Scilab | false | false | 2,283 | sci | epipolarlines.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: Shreyash Sharma,Suraj Prakash
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [x,x1] = epipolarlines(img1,img2,qid,tid,fund,k1,k2)
// The function draws epipolar lines by feature matching using stereo images.
//
// Calling Sequence
// [iz,iz1] = epipolarlines(img1,img2,qid,tid,fund,k1,k2)
//
// Parameters
// F : A 3 * 3 fundamental matrix computed from stereo images. It should be double or single
// image1 : The first input stereo image.
// image2 : The second input stereo image.
// qid : The queryid of the matched keypoints of the input images.
// tid : The tid of the matched keypoints points of the input images.
// k1 : The detected keypoints of the first image.
// k2 : The detected keypoints of the second image.
// iz : The output image containing the drawn epipolar lines.
// iz1 : The output image containing the drawn epipolar lines.
//
// Description
// The function determines the epipolar lines by matching the features of two stereo images using the detected keypoints.
//
// Examples
// i = imread('left11.jpg',0);
// ii = detectAkazeFeatures(i);
// i1 = imread('right11.jpg',0);
// ii1 = detectAkazeFeatures(i1);
// [matches, distance] = matchFeatures(ii.Features, ii1.Features);
// f1 = estimateFundamentalMat(ii.KeyPoints(1:644,:),ii1.KeyPoints);
// [iz,iz1] = epipolarlines(i,i1,matches(1),matches(2),f1,ii.KeyPoints,ii1.KeyPoints);
//
img_list1=mattolist(img1);
img_list2=mattolist(img2);
[lhs rhs] = argn(0);
if rhs>7 then
error(msprintf("Too many input arguments"));
end
if rhs<7 then
error(msprintf("Not enough input arguments"));
end
if lhs >2
error(msprintf("Too many output arguments"));
end
[y,y1]=raw_epipolarlines(img_list1,img_list2,qid,tid,fund,k1,k2);
channel = size(y);
for i = 1:channel
x(:,:,i) = y(i);
end
channel1 = size(y1);
for i = 1:channel1
x1(:,:,i) = y1(i);
end
endfunction
|
dcc0998401c497fb8e9394ffb09b01734e4b8513 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.16_15.tst | d5f41fe6703919e9d7db4c12631e06c8f64756ef | [] | 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 | 4,578 | tst | bow.16_15.tst | 16 1:0.047619047619047616 13:1.0 63:0.5 83:0.013888888888888888 102:0.3333333333333333 155:1.0 1119:1.0
16 1:0.047619047619047616 10:1.0 13:1.0 22:1.0 25:1.0 47:0.25 83:0.013888888888888888 93:1.0 122:0.16666666666666666 175:0.14285714285714285 191:0.25 250:0.3333333333333333 340:0.2 440:1.0 567:0.25 575:1.0 1040:1.0 1064:1.0 1065:1.0 1091:0.5 1546:1.0 1785:1.0
16 1:0.14285714285714285 13:1.0 19:0.0625 22:1.0 25:1.0 47:0.25 58:1.0 63:0.5 76:0.5 83:0.027777777777777776 87:1.0 93:1.0 102:0.3333333333333333 189:1.0 340:0.2 440:1.0 481:1.0 647:0.5 1039:1.0
16 1:0.09523809523809523 3:1.0 4:1.0 63:0.5 76:0.5 83:0.013888888888888888 112:1.0 155:2.0 175:0.14285714285714285 559:1.0 694:1.0 851:1.0 1171:1.0
16 1:0.047619047619047616 15:1.0 25:1.0 41:1.0 63:1.0 83:0.013888888888888888 137:0.2 194:1.0 227:0.25 522:1.0 653:1.0 719:0.3333333333333333 1314:1.0 1764:1.0
16 1:0.047619047619047616 19:0.0625 28:0.25 41:3.0 63:0.5 76:1.0 83:0.027777777777777776 86:1.0 90:0.2 137:0.2 172:0.2222222222222222 227:0.25 440:1.0 628:1.0 631:1.0 653:1.0 719:0.3333333333333333 755:1.0 1586:1.0 1604:1.0 1764:1.0
16 1:0.09523809523809523 28:0.25 41:2.0 56:0.5 63:0.5 90:0.2 175:0.14285714285714285 227:0.25 250:0.3333333333333333 340:0.2 417:1.0 466:1.0 653:1.0 719:0.3333333333333333 785:1.0 803:1.0 1140:1.0 1546:1.0 1559:1.0
16 13:1.0 15:1.0 54:1.0 76:0.5 83:0.027777777777777776 90:0.1 155:1.0 227:0.25 296:1.0 464:0.08333333333333333 532:1.0 542:0.5 571:1.0 616:1.0 944:1.0
16 21:0.3333333333333333 41:2.0 63:0.5 74:0.5 90:0.2 295:1.0 977:1.0 981:1.0 1207:1.0
16 63:1.0 87:1.0 179:1.0 204:0.5 227:0.25 373:1.0 440:1.0 647:0.5 1764:1.0
16 1:0.19047619047619047 19:0.125 28:0.5 41:1.0 54:1.0 63:1.0 179:1.0 227:0.25 270:1.0 304:1.0 340:0.2 464:0.08333333333333333 653:1.0 668:0.1111111111111111 941:1.0 967:1.0
16 19:0.0625 54:1.0 63:0.5 83:0.013888888888888888 437:1.0 438:1.0 463:1.0 941:1.0 967:1.0 1089:1.0
16 28:0.25 54:1.0 56:0.5 63:1.0 76:0.5 83:0.013888888888888888 227:0.25 243:0.5 367:1.0 464:0.08333333333333333 542:0.5 616:1.0 719:0.3333333333333333 775:1.0 800:1.0 967:1.0 1305:1.0 1764:1.0
16 52:0.16666666666666666 63:0.5 83:0.013888888888888888 191:0.25 340:0.2 941:1.0 943:0.16666666666666666 1263:1.0 1645:1.0 1785:1.0
16 340:0.2 463:1.0 464:0.08333333333333333 1398:1.0
16 76:0.5 90:0.1 1226:1.0
16 90:0.1 464:0.08333333333333333 927:1.0
16 1:0.047619047619047616 10:1.0 19:0.0625 47:0.25 63:0.5 74:0.5 83:0.041666666666666664 129:1.0 162:1.0 242:0.25 367:1.0 369:1.0 373:1.0 441:1.0 616:1.0 951:1.0 1410:1.0
16 63:0.5 83:0.027777777777777776 123:1.0 167:1.0 173:1.0 191:0.5 294:1.0 497:1.0 643:1.0
16 1:0.09523809523809523 13:1.0 19:0.125 63:0.5 83:0.027777777777777776 88:1.0 90:0.1 155:2.0 463:1.0 466:1.0 562:1.0 573:1.0 1314:1.0 1772:1.0
16 19:0.0625 83:0.013888888888888888 295:1.0 438:1.0 466:3.0 1171:1.0
16 1:0.23809523809523808 10:1.0 13:2.0 56:0.5 83:0.013888888888888888 90:0.1 200:1.0 218:1.0 464:0.08333333333333333 1163:1.0 1171:1.0 1194:2.0 1298:1.0 1482:1.0
16 1:0.19047619047619047 10:1.0 19:0.0625 28:0.25 56:0.5 63:0.5 76:1.0 83:0.041666666666666664 90:0.1 127:1.0 167:1.0 191:0.25 227:0.25 323:1.0 522:1.0 542:0.5 634:1.0 652:1.0 754:1.0 1194:1.0 1297:1.0 1298:1.0 1347:1.0 1383:1.0
16 1:0.047619047619047616 13:2.0 25:1.0 32:0.3333333333333333 34:1.0 83:0.027777777777777776 90:0.2 93:1.0 175:0.14285714285714285 204:0.25 543:1.0 898:1.0 1385:1.0 1694:1.0 1815:1.0
16 1:0.09523809523809523 19:0.0625 28:0.25 83:0.041666666666666664 90:0.1 366:1.0 367:1.0 509:1.0 628:1.0 799:1.0 1140:2.0 1517:1.0 1816:1.0
16 19:0.0625 90:0.3 191:0.25 254:1.0 408:1.0 567:0.25 931:1.0
16 22:1.0 63:0.5 83:0.013888888888888888 93:1.0 110:0.5 429:1.0 1610:1.0
16 4:1.0 83:0.013888888888888888 133:0.5 463:1.0 875:1.0 935:1.0
16 13:1.0 19:0.0625 28:0.25 74:0.5 175:0.2857142857142857 227:0.25 464:0.16666666666666666 466:1.0 1675:1.0 1676:1.0 1714:1.0
16 1:0.09523809523809523 24:1.0 83:0.013888888888888888 94:1.0 155:1.0 297:0.5 572:1.0 1244:1.0 1601:1.0 1799:1.0
16 1:0.047619047619047616 19:0.0625 63:0.5 76:0.5 179:1.0 297:0.5 472:1.0 671:1.0
16 51:0.5 63:0.5 172:0.1111111111111111 223:1.0 440:1.0 624:1.0
16 1:0.09523809523809523 13:3.0 24:1.0 28:0.25 76:0.5 90:0.1 110:0.5 218:1.0 249:0.5 479:1.0 481:1.0 1171:1.0 1357:1.0 1619:1.0
16 76:0.5 83:0.027777777777777776 197:1.0 297:0.5 616:1.0 795:1.0 1015:1.0
16 1:0.047619047619047616 13:1.0 90:0.1 367:1.0 409:1.0 466:2.0 562:1.0 634:1.0 931:1.0 1001:2.0
16 297:0.5 914:1.0
16 21:0.3333333333333333 629:1.0 742:1.0
16 464:0.08333333333333333
16 13:1.0 83:0.013888888888888888 290:1.0 792:1.0 1461:1.0 1488:1.0
|
f9ac0b9d47a3d3d1899d82575e485c51c9b6f75c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH8/EX8.3/Ex8_3.sce | c13eb0b1472b33a15a29cae9421604eaf58759d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 292 | sce | Ex8_3.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 8 Power Amplifiers Pg no. 271 and 272
clear;
clc;
//Given Data
k=10;//turn ratio of transformer
RL=8;//load resistance in ohms
//Solution
RL_eq=k^2*RL;//equivalent resistance at primary in ohms
printf("RL'' = %d ohms",RL_eq);
|
be9943efc65fb315b4e09160df96fbb5ea09cdae | 73425c8dc40c95f00b4a1a32327c2aeabcef7c58 | /NewsPaper.IdentityServer/Data/migrations.tst | c514a452c3a06497901ff49fa262f55efa267b5e | [] | no_license | PKravchenko-ki16/NewsPaper.IdentityServer | e19b35e7b2819cd9823a5b6237229ac955361c1b | be02b8ef36b7f94883fc2ebcb77afb12cab81e1f | refs/heads/master | 2023-01-12T04:11:16.068789 | 2020-11-16T13:59:12 | 2020-11-16T13:59:12 | 312,257,067 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 438 | tst | migrations.tst | Add-Migration Initial -Context ApplicationDbContext -OutputDir Data/ApplicationDb
Update-Database -Context ApplicationDbContext
Add-Migration PersistedGrantDbMigration -Context PersistedGrantDbContext -OutputDir Data/PersistedGrantDb
Update-Database -Context PersistedGrantDbContext
Add-Migration ConfigurationDbMigration -Context ConfigurationDbContext -OutputDir Data/ConfigurationDb
Update-Database -Context ConfigurationDbContext |
4d95674bd370f924fe0564d191c4c496997b10b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /593/CH9/EX9.3/ex9_3.sce | 21bbb0617ab93eddf66f9ef6c7f1c05c4c4e8b01 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 250 | sce | ex9_3.sce | clear;
//clc();
// Example 9.3
// Page: 221
printf("Example-9.3 Page no.-221\n\n");
//***Data***//
printf("This is a theoratical question and there are no any numerical components. For the derivation, refer to page no 221 of the book."); |
7e64d858b0f926e5bff3397bd4ab691c5671d84e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2753/CH3/EX3.4/Ex3_4.sce | ca607f912eeb27ed5868bdb9b94b1c1692bdc62b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 181 | sce | Ex3_4.sce | //Example 3.4:
clc;
clear;
close;
format('v',5)
//given data :
del_Ic=0.95*10^-3;// in A
del_Ie=1*10^-3;// in A
alfa=del_Ic/del_Ie;
disp(alfa,"the short circuit current gain, = ")
|
bf5c99655959e39437ddd667958bb69fec4f8264 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH11/EX11.4/Ex11_4.sce | 3c6c15c29f28afb202c7e934fd9c931c3818e498 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 207 | sce | Ex11_4.sce | clc;
//e.g 11.4
Idss=20*10**-3;
vp=-8;
gmo=5000*10**-6;
vgs=-4;
//Id=Idss*(1-(Vgs/Vgso))^2
Id=Idss*(1-(vgs/vp))^2;
disp('mA',Id*10**3,"Id=");
gm=gmo*(1-(vgs/vp));
disp('microsec',gm*10**6,"gm=");
|
4d0fcfe182c976314aa205e47fc4745b6bedb5f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2072/CH25/EX25.3/EX25_3.sce | c8208d29f7ec747ad5c518ea07f0cf200c379014 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 247 | sce | EX25_3.sce | //Chapter 25
clc
//Example 3
//given
f=10 // focal length in cm
//a)Maximum angular magnification
M_max=1+(25/f)
disp(M_max,"a) Maximum angular magnification of the lens is")
m=25/f
disp(m,"Angular Magnification of lens when eye is relaxed is")
|
ef6fe657d14663c37d297e17e31db2d231ca12d6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1892/CH1/EX1.2/Example1_2.sce | 922d3cf0ec3cd89210b5faa04cb67ca7e44a935e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 227 | sce | Example1_2.sce | // Example 1.2
clear; clc; close;
format('v',6);
// Given data
P=2;//No. of poles
f=50;//in Hz
S=2;//in %
//Calculations
S=S/100;//unitless
Ns=120*f/P;//in rpm
N=Ns*(1-S)
disp(N,"Speed of motor in rpm : ");
|
46bfb6969549cbef5423cc4da82c0425e4c43b6d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1752/CH8/EX8.12/exa_8_12.sce | 3bd89725cb0d2886ba23b1da84502a6b046e1e25 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 856 | sce | exa_8_12.sce | //Exa 8.12
clc;
clear;
close;
format('v',13)
//given data
t_hi=78;// in degree C
t_ci=23;// in degree C
t_ho=65;// in degree C
t_co=36;// in degree C
// Energy balance Mh*Cph*(t_hi-t_ho) = Mc*Cpc*(t_co-t_ci)
// C =C_min/C_max = Mh*Cph/( Mc*Cpc)
C= (t_co-t_ci)/(t_hi-t_ho);
epsilon=(t_hi-t_ho)/(t_hi-t_ci);
// Formula epsilon = (1-exp(-N*(1+C)))/(1+C)
N= -log(1-epsilon*(1+C))/(1+C);
// When flow rates of both fluids are doubled , the deat capacity ratio will not change, i.e.
// C=1
// MCp_new =2* MCp_old
// N=U*A/C_min=N/2
N=N/2;
epsilon=(1-exp(-N*(1+C)))/(1+C);
// exit temperature
t_ho=t_hi-epsilon*(t_hi-t_ci);// in degree C
t_co= t_ci+epsilon*(t_hi-t_ci);
disp("Exit temperature in degree C : "+string(t_ho)+" and "+string(t_co));
// Note: Answer in the book is wrong due to put wrong value of t_ci in second last line |
bec7bdd642158c0c6034ff9ed5eb1870e2942120 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1457/CH4/EX4.3/4_3.sce | 2cc0c0b6a1c06afb066a8d156260f18880832106 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | 4_3.sce | clc
//Initialization of variables
sg=1.26
sg2=1.26
HP=22
HP2=16
//calculations
hp=HP*550/(sg*62.4) //divide by Q
Q=14.2 //cfs
printf("In English units, By trial Q= %.1f cfs",Q)
hp2=HP2*1000/(sg2*9.81)
Q2=0.42 //m^3/s
printf("\n In SI units, By trial Q= %.2f m^3/s",Q2)
|
78f5797e5d59e860f0b1651f002378c384704beb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH8/EX8.2/Ex8_2.sce | ed1500e349bff387fc3cc3f6f9a2daaaba2aba4b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 590 | sce | Ex8_2.sce |
// Theory and Problems of Thermodynamics
// Chapter 8
// Power and Refrigeration Cycles
// Example 2
clear ;clc;
//Given data
P1 = 10 // pressure of saturated water to be pumped in kPa
P2 = 3 // boiler pressure is maintained in MPa
n_p = 0.85 // isentropic efficency of pump
// Steam at 10 kPa
vf = 0.001010 // in m^3/kg
W_i = vf*(P2*1e3-P1) // work done by isentropic pump
W_P = W_i/n_p // work done by actual pump
// Output Results
mprintf('Work done by actual pump = %4.2f kJ/kg' ,W_P);
|
8b9ccc3314781cd73be063dbb16d43d877aecb69 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH14/EX14.5/5.sce | d745a866c5c2fc2137c841469a1acb65544694da | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 261 | sce | 5.sce |
//Variable declaration
D10=0.5*10**-2; //diameter of 10th ring(m)
lamda=5900*10**-10; //wavelength of light(m)
n=10;
//Calculation
R=D10**2/(4*n*lamda); //radius of curvature(m)
//Result
printf('radius of curvature is %0.3f m \n',(R)) |
25a671a17214b3cebfb5edfe430d91564367636e | b3c9357cd1290921e67444ae057761959fdf24f1 | /Curso de programação com Scilab/códigos/minquadrado.sce | e951f84dcbba3df70157179a671d2a18082f71f0 | [] | no_license | joaolrneto/Scilab | 91742520422426dc8a772997ef4a5d6376008b6e | f383f87e4585955cf19d0dae1b5c29f93c3f70b4 | refs/heads/master | 2023-02-05T20:13:03.677069 | 2020-12-30T14:53:09 | 2020-12-30T14:53:09 | 264,671,730 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,116 | sce | minquadrado.sce | clc
clear
close
n_pontos=7;
x=[1.1 2.2 3.3 4.4 5.5 6.6 7.7];
y=[1.01 2.3 3.05 4.28 5.75 6.48 7.84];
soma_x=0;
soma_y=0;
soma_xy=0;
soma_x2=0;
for i=1:n_pontos
soma_x=soma_x+x(i);
soma_y=soma_y+y(i);
soma_x2=soma_x2+x(i)^2;
soma_xy=soma_xy+x(i)*y(i);
end
media_x=soma_x/n_pontos;
media_y=soma_y/n_pontos;
inclinacao=(soma_xy-soma_x*media_y)./(soma_x2-soma_x*media_x);
y_int=media_y-inclinacao*media_x;
disp('Regressao coeficientes por minimos quadrados:');
printf('Inclinacao (m) =%8.3f\n',inclinacao);
printf('Intersecao da reta de minimos quadrados (b) = %8.3f\n',y_int);
printf('Equação da reta => y = %.3fx + (%.3f)\n',inclinacao,y_int)
printf('Numero de pontos = %8d\n',n_pontos);
plot(x,y,'ro','MarkerFaceColor','r');
set(gca(),"auto_clear","off");
//mtlb_hold on
xmin=min(x);
xmax=max(x);
ymin=inclinacao*xmin+y_int;
ymax=inclinacao*xmax+y_int;
plot([xmin xmax],[ymin ymax],'k-','LineWidth',2);
set(gca(),"auto_clear","on");
//mtlb_hold off
title('Ajuste de mínimos quadrados');
xlabel('x');
ylabel('y');
legend('Medidas originais','Reta ajustada');
set(gca(),"grid",[1,1]);
//mtlb_grid on
|
7e2bb6d8d5a986b9f1b301705884b1950ae8ed3a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1034/CH1/EX1.3/example3.sce | 2c3c6c53607e69736466e8de9cd3a7211d27caf3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 331 | sce | example3.sce | // to do binary search..
function[]=search(a)
i=1;
[j,k]=size(a);
for i=1:k
if x==a(i) then
printf("\nFOUND and index no. is=%d\t",i);
end
end
funcprot(0);
endfunction
//callin routine
a=[5 7 45 28 99]
x=45
binary=search(a)
|
c68b00ec178fafc2713d9e134069f243cb16468b | c9e04373e33a2721547c7ae2be20ee84f115be1c | /evaluationData/MDacceptedRatio.sce | e2d8f7858b5b2ec57a14584050627f5ff6497399 | [] | no_license | lspxian/junsp | f944ce163267608cb9cdb939a0ac809f724fb396 | ca1571bbc30e6a9a183fa8d675567e169288acf4 | refs/heads/master | 2021-01-23T14:10:34.141815 | 2017-10-06T17:03:10 | 2017-10-06T17:03:10 | 34,068,408 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 672 | sce | MDacceptedRatio.sce | figure();
aceptedratio = read("ShortestPathBW_Accepted_Ratio_l4_c0.txt",-1,2);
time = aceptedratio(:,$-1);
aceptedratio = aceptedratio(:,$);
plot(time,aceptedratio, 'r-o');
aceptedratio = read("ProbaHeuristic3_Accepted_Ratio_l4_c0.txt",-1,2);
time = aceptedratio(:,$-1);
aceptedratio = aceptedratio(:,$);
plot(time,aceptedratio,'b-+');
//aceptedratio = read("MultiDomainAsOneDomain_AcceptedRatio_l4_c0.txt",-1,2);
//time = aceptedratio(:,$-1);
//aceptedratio = aceptedratio(:,$);
//plot(time,aceptedratio,'k->');
//aceptedratio = read("MDasOD2_AcceptedRatio.txt",-1,2);
//time = aceptedratio(:,$-1);
//aceptedratio = aceptedratio(:,$);
//plot(time,aceptedratio,'g-*');
|
b727e6f2e28389954dcdc68bf3da7d313dfc7a51 | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH24/EX24.8/example8.sce | 96eafd677a11deab55d54108701efe48ded3a409 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 669 | sce | example8.sce | // find efficiency
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 24-8, page 963
clear; clc; close;
// Given data
Vin=15;// input voltage
Vz=6.2;// in volts
Vbe=0.7;// in volts
Rl=40;// in ohms
R1=3*10^3;// in ohms
R2=1*10^3 ;// in ohms
// Calculations
Vout=((R1+R2)/R1)*(Vz+Vbe);// output voltage in volts
Il=Vout/Rl;// load current in amperes
Ic=Il;// transistor current is equal to load current
Pout=Vout*Il;// load power in watts
Pin=Vin*Ic;// input power in watts
E=(Pout/Pin)*100;// efficiency in %
disp("%",E,"efficiency=")
// Results
// Efficiency is 61.3 % |
a99f674863d92deb89db8153589ae527bcdbe6da | 623a9dd972dc78dbde5d5b8dc187acd6a1eb5910 | /TP2/ibackSub.sci | 0ba944a9636bb3a20e1438e915799ffbc58081fd | [] | no_license | gtessi/CN2012-FICH | 0daad054ceb6c36636ee5e8b174a676b9e0acb9b | 4024384653b61b5af9e1c11ffb575e154025ee47 | refs/heads/master | 2020-03-27T05:53:04.684505 | 2018-08-25T03:03:15 | 2018-08-25T03:03:15 | 146,059,800 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sci | ibackSub.sci | function x = ibackSub(A,b,indx)
n=length(b);
x=zeros(n,1);
for (i=n:-1:1)
x(i)=(b(indx(i))-A(indx(i),i+1:n)*x(i+1:n))/A(indx(i),i);
end
endfunction |
566ffd8680c1e45c880ce219362ea4259eb2d7ad | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /matlab/plasma/grav.sce | fcfa0f989771912dca3560bb3df7be279417eba6 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 186 | sce | grav.sce | //bfield outside a solenoid
//assume solenoid aligned along z axis
function [g]=grav(m,r)
me=;
G=;
rsq=r(1,1)*r(1,1)+r(2,1)*r(2,1)+r(3,1)*r(3,1);
g=G*me/rsq;
endfunction
|
343d4b86f89d34e9cd21705f6171d2279c639332 | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/BCK/Scripts/Test/test.SCI | f8276284b1d75fcd27e5971fa546b56669af2bec | [
"LicenseRef-scancode-khronos",
"MIT"
] | permissive | pvaut/Z-Flux | 870e254bf340047ed2a52d888bc6f5e09357a8a0 | 096d53d45237fb22f58304b82b1a90659ae7f6af | refs/heads/master | 2023-06-28T08:24:56.526409 | 2023-03-01T12:44:08 | 2023-03-01T12:44:08 | 7,296,248 | 1 | 1 | null | 2023-06-13T13:04:58 | 2012-12-23T15:40:26 | C | UTF-8 | Scilab | false | false | 868 | sci | test.SCI | # resetallscenes;
# resetallviewports;
# resetallvideos;
resetall;
displayname=root.displays.getmembers.get(0).name;
vp=addviewport(0,0,1,1,displayname,displayname);
vp.name="main";
disp1=root.displays.get(displayname);
disp1.start;
vp.usestereo=true;
vp.start;
vp.camerapos=point(0,6,10);
vp.cameradir=vecnorm(point(0,0,0)-vp.camerapos);
vp.cameraupdir=vector(0,1,0);
vp.enableusernavigation=true;
vp.EnableUserTimeControl=true;
vp.NearClipPlane=0.05;
vp.FarClipPlane=30;
vp.FocalDistance=10;
vp.EyeSeparation=0.5;
sc=addscene;sc.name="SC";
sc.light0pos=point(50,50,100);
vp.setscene(sc);
scene.ambientlightcolor=color(0.1,0.1,0.1);
scene.start;
universe=sc.addsubframe("Universe");
root.time=time(2008,1,1,0,0,0);
root.TimeSpeed=1;
while true do {
render;
}
|
b4b319b3668100ad3bc628e2f282f09314bcb0e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /10/CH4/EX4/cha4_4.sce | eb04c71f97930988dc09ee0676ef45a22804bb81 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 78 | sce | cha4_4.sce | Ia=120;Ra=0.1;Vt=80;Vt1=75;AB=17;Ea=6;
V=Ia*Ra
Ia=AB/Ra
Ia1=Ea/Ra
|
c8291917150b0d4083f901efa6a37add0f7fd350 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3812/CH10/EX10.12.b/10_12b.sce | 2d25e8888a923b52da50d1ed26518ce6cb3d420b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 234 | sce | 10_12b.sce | //example 10.12(b)
//determine Z transform
clc;
function[za]=ztransfer(sequence,n)
z=poly(0,'z','r')
za=sequence*(1/z)^n'
endfunction
x=[1,2,6,-2,0,3];
n1=-2:length(x)-3;
X=ztransfer(x,n1);
disp(X,'X(z)=');
funcprot(0);
|
036b00e3a2bcbd9f95cdac0656b3b415a6176e41 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2561/CH7/EX7.4/Ex7_4.sce | 70211c285d55fbd01395e83b889a2bdff8016a94 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex7_4.sce | //Ex7_4
clc
GBW=10^(6)
disp("GBW= "+string(GBW)+" Hz")// Gain-Bandwidth product
AMf=100
disp("AMf="+string(AMf)) // Midband gain with feedback
fHF=GBW/AMf
disp("fHF=GBW/AMf= "+string(fHF)+" Hz")//Signal bandwidth
f_10percent=(10*fHF)/100
disp("f_10per cent=(10*fHF)/100= "+string(f_10percent)+" Hz")//Frequency below which AMf will not deviate by more than 10 percent
|
4f1979a8fecccbd5aec2a97d07f4a9d4bf57fce0 | 69147dbbf89bfbceb8875e0e1545e513ebfaf1be | /TopArtists_7.tst | b6419b6021cd55f0081b9e018e863e65832be881 | [] | no_license | Cbro/Oracle-scripts | 225e7121f3e8b6d77d9da786ddbad58502486989 | 97769548e7a2794d6cc75a1ac46821f58d347dec | refs/heads/master | 2020-12-24T14:36:20.643782 | 2011-05-07T18:55:51 | 2011-05-07T18:55:51 | 667,071 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 930 | tst | TopArtists_7.tst | PL/SQL Developer Test script 3.0
36
-- Created on 11/04/2008 by MKAUL
declare
-- Local variables here
i integer;
vTrackID track.id%type;
vRankNum INTEGER;
begin
for x in (
-- Test statements here
select x.artist_id,
x.rank_num
from
(
select /*+ FIRST_ROWS */ v.artist_id artist_id,
row_number() over ( order by v.play_count desc ) rank_num
from artist a,
service_artist sa,
v_artist_count_forever v
where a.id = v.artist_id
and sa.service_id = v.service_id
and sa.artist_id = a.id
and sa.service_id = :sid
and (a.first_release_date is null or a.first_release_date < sysdate)
) x
where x.rank_num <= :topCount;
) loop
dbms_output.put_line('Rel ID : '|| x.artist_id );
dbms_output.put_line('Rank : '|| x.rank_num );
end loop;
end;
2
sid
1
50
3
topCount
1
20
3
0
|
ed80dec37a87b615c024a5d8dbd88bd8af1a30c5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH7/EX7.8/Ex7_8.sce | baed86f02f64987c9d23c934c8c7401ae50059cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 526 | sce | Ex7_8.sce |
//both the coils draw lagging currents, hence both are inductive
//for coil A
Va=10//voltage applied
Ia=2//current drawn
Za=Va/Ia
pf=.8//power factor
Ra=pf*Za
Xa=sqrt(Za^2-Ra^2)
//for coil B
Vb=5//voltage applied
Ib=2//current drawn
Zb=Vb/Ib
pf=.7//power factor
Rb=pf*Zb
Xb=sqrt(Zb^2-Rb^2)
Rt=Ra+Rb//total resistance of circuit
Xt=Xa+Xb//total reactance of circuit
Z=sqrt(Rt^2+Xt^2)
V=Ia*Z
pf=Rt/Z
mprintf("Voltage to be applied to the circuit of coils A and B in series=%f V and pf=%f lagging",V,pf)
|
1a8d93d0ba4c500b031bf8552700e0bd0fb9b2ea | c9cea368728effc50ef3a05f10679bcc5c63382a | /Proyecto/proyecto.sce | a5608bfbc630eb3ddafd3833f1d56fbbe6bdbd49 | [] | no_license | juancllanos/Optimizacion | dbb30315da1b6b3bfac0d1ace5d8e468557565d3 | ef85b725af392290dd46febc839f27944a5ed9d7 | refs/heads/master | 2020-04-28T05:46:38.128903 | 2019-05-21T21:59:16 | 2019-05-21T21:59:16 | 175,032,693 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,895 | sce | proyecto.sce | /*
Usaremos la funcion karmarkar la cual resuelve problemas de Optimizacion Lineal
- Los parametros que esta misma recibe son :
'Aeq'(matriz de coeficientes de x en las igualdades)
'beq'(Matriz de constantes de las igualdades)
'c'(matriz de coeficientes de la funcion objetivo)
'A'(matriz de coeficientes de x en las desigualdades)
'b'(matriz de constantes de las desigualdades)
'lb'(matriz de los valores minimos de las x)
'up'(matriz de los valores maximos de las x) %inf si no desea colocar restriccion para esa variable
- Las variables que retorna son :
'xopt'(x optimo)
'fopt'(funcion objetivo evaluada en xopt)
'exitflag'(estado de la minimizacion en 1 converge, 0 se alcanzo el numero maximo de iteraciones, -1 no se encontro punto factible, -2 el problema no es acotado, -3 direccion de busqueda se volvio 0, -4 si la ejecucion paro por peticion del usuario.
'iter'(numero de iteraciones)
'yopt'(multiplos de Lagrange)
*/
// EJEMPLOS :
// 1)
/*
A = [-2 -3 1 2 0;-1 8 0 -3 2 ;-1 5 0 -2 1]
b = [8 ; 1 ; -1]
c = [-1 ; -1 ; -1 ;-1 ; -1]
lb = [0 ; 0 ; 0 ; 0 ; 0]
[xopt,fopt,exitflag,iter,yopt]=karmarkar([],[],c,[],[],[],[],[],A,b,lb)
disp(fopt,'f(xopt)',xopt,'xopt',exitflag,'Tipo');
*/
// 2)
/*
A1 = [2 -2 -1 0 0; -1 -4 1 0 0]
b1 = [-1 ; -1]
c1 = [2 ; 9 ; 3 ; 4 ; 5]
lb1 = [0 ; 0 ; 0 ; 0 ; 0]
ub1 = [10 ; 8 ; 5 ; 2 ; 4]
[xopt1,fopt1,exitflag1,iter1,yopt]=karmarkar([],[],c1,[],[],[],[],[],A1,b1,lb1,ub1)
disp(fopt1,'f(xopt)',xopt1,'xopt',exitflag1,'Tipo');
*/
// 3)
// https://www.youtube.com/watch?v=17meLjNKVH0
A2 = [-3 -2 -1 0 0; 0 -1 0 -2 -1; 0 0 -1 0 -1]
b2 = [-800 ; -500 ; -1000]
c2 = [18 ; 3 ; 22 ; 18 ; 7]
lb2 = [0 ;0 ; 0 ; 0 ; 0 ]
[xopt2,fopt2,exitflag2,iter2,yopt2]=karmarkar([],[],c2,[],[],[],[],[],A2,b2,lb2)
disp(fopt2,'f(xopt)',xopt2,'xopt',exitflag2,'Tipo');
|
f9291d1c38fe5b65216e772e4c59ae8383fae44a | 6b755ce3e04b7ec0724e46a2c59c461553c57b27 | /Markov-models/Hidden Markov models/crabe-tp.sce | f982b3821a4f376569a128c101198f415de35071 | [] | no_license | francoisDupre/Markov-Models | ca2a12bd569e23c16bc8e757ef246a2d01c25448 | 7467e9a3dc975fa33631ba676a92e2945437a603 | refs/heads/master | 2021-01-22T01:55:00.200304 | 2017-02-06T21:08:29 | 2017-02-06T21:08:29 | 81,018,232 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,224 | sce | crabe-tp.sce | // MODALE TP1 CRESSOT DUPRE
clear
// test de chi2
function[proba]=test_chi2(N,p0)
n=sum(N);// taille de l'echantillon observe
// calcul de zeta_ n
zeta_n=n*sum(((N/n-p0).^2)./p0);
// nombre de degres de liberte (= nombre de classes dans N-1)
d= length(N)-1;
// on calcule la proba pour un chi 2 à d-1 degres d'etre superieur a zeta
[p,q]=cdfchi("PQ",zeta_n,d);
proba=q;
endfunction;
// Loi normale
function [x]=normale(y,m,s2)
x=%e^(-(y-m).^2/2/s2)/sqrt(2*%pi*s2)
endfunction;
// Ouvrir le fichier de données (nombre de crabes par intervalle)
x=fscanfMat('crabe.txt');
x=x;
// intervalles
y=.580+.002+.004*[0:28];
yM=y+.002;
ym=y-.002;
Max=25;
// Dessiner la loi normale correspondante
// A FAIRE
// moyenne
x1=x.*y'
mu=sum(x1)/sum(x)
sigma2 = sum(((y-mu).^2).*x')/sum(x)
norma = normale(y,mu,sigma2)
plot2d(y,norma);
// Tracer l'histogramme
// A FAIRE
div = 0.004*sum(x)
bar(y,x/div);
// test du chi 2
X2 = test_chi2(x/div,norma')
// Données
pi0=[1; 3]/2/2;
pi=pi0;
mu=[.57; .67];
s2=[1 ;1]/10000;
// Algorithme EM pour les crabes
//------------------------------
clf(); // clear figure
N=1000;
P=10;
rho=ones(2,N);
R=zeros(5,P);
R(:,1)=[mu(1);mu(2);pi(1);s2(1);s2(2)];
Likelihood=zeros(2,N)
// calculate all crab sizes in Y
Y=zeros(1,1000) // crabs sizes
counter=1
class=1
for k=1:1000;
Y(k)=y(class)
if counter*1.==x(class) then
class = class+1
counter=1
end
counter = counter+1
end
for k=1:P-1;
// Iteration k
// A FAIRE
vec_normal=[ normale(Y,R(1,k),R(4,k)) ; normale(Y,R(2,k),R(5,k))]
vect_init=[R(3,k) ; 1-R(3,k)]'
f_mu=zeros(2,N)
f_mu(1,:)=vect_init(1)*vec_normal(1,:)
f_mu(2,:)=vect_init(2)*vec_normal(2,:)
f_sigma=f_mu(1,:) + f_mu(2,:)
rho(1,:)=(vec_normal(1,:)*vect_init(1))./f_sigma
rho(2,:)=(vec_normal(2,:)*vect_init(2))./f_sigma
// mise à jour des paramètres
R(3,k+1)= sum(rho(1,:))/N
R(1,k+1)=(rho(1,:)*Y')/sum(rho(1,:))
R(2,k+1)=(rho(2,:)*Y')/sum(rho(2,:))
R(4,k+1)=( rho(1,:)*((Y-R(1,k)).^2)')/sum(rho(1,:))
R(5,k+1)=( rho(2,:)*((Y-R(2,k)).^2)')/sum(rho(2,:))
end;
// Affichages
// A FAIRE
plot([1:P],R(1,:));
plot([1:P],R(2,:));
plot([1:P],R(3,:));
plot([1:P],R(4,:));
plot([1:P],R(5,:));
|
08cdd10301a510b0a3032c97545753da21d566db | 449d555969bfd7befe906877abab098c6e63a0e8 | /43/CH2/EX2.11.b/ex2_11b.sce | cf02237d73ca5bef96c417586ba1815b638545c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 565 | sce | ex2_11b.sce | clc;
A=1;
Dt=0.005;
t=-4.5:Dt:4.5;
xt=exp(-A*abs (t));
Wmax=2*%pi*1;
K=4;
k=0:(K/1000):K;
W=k*Wmax/K;
XW=xt*exp(-sqrt(-1)*t'*W)*Dt;
XW = real (XW);
W=[-mtlb_fliplr(W),W(2:1001)];
XW=[mtlb_fliplr(XW),XW(2:1001)];
subplot(1,1,1)
subplot(2,1,1);
a=gca();
a.y_location="origin";
plot(t,xt);
xlabel( ' t in sec. ' );
ylabel( ' x(t) ' )
title( ' Continuous Time Signal ' )
subplot(2,1,2);
a=gca();
a.y_location="origin";
plot(W,XW);
xlabel( ' Frequency in Radians / Seconds W' );
ylabel( 'X(jW) ' )
title(' Continuous time Fourier Transform ' ) |
75489ffd50d7c7a85136684b3706e39d7fa424dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3392/CH7/EX7.9/Ex7_9.sce | b9d20c2fdcd139036efd6da62dd698f0eb2b54af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | Ex7_9.sce | clc
// initialization of variables
clear
Y=280 //MPa
AB=40 //mm
BC=60 //mm
//calculations
Y=Y*10^6
alpha=atan(BC/AB)
C11=20/3 //mm
C12=-10 //mm
C21=-20/3 //mm
C22=10 //mm
Beta=atan((C11-C21)/(C22-C12))
Phi=%pi/2+Beta
d=sqrt((AB/2-C11)^2+(BC/2-C22)^2)
d=d*10^-3 //m
At=1/2*AB*BC/2*10^-6
Mp=At*Y*d
printf('Mp = %.3f kN.m',Mp/10^3)
|
b4d74300b3c0a1dff3b5c1bf37ba6833ca03de4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1952/CH12/EX12.33/Ex33.sce | 1c3e36bfaf84e69de074efb561b07f70466798cf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | sce | Ex33.sce | // Additional solved examples , Example 33 , pg 346
M1=199 //isotopic mass
Tc1=4.18 //critical temperature for M1 (in K)
Tc2=4.14 //critical temperature for M2 (in K)
alpha=0.5
//M^alpha * Tc=constant
M2=((M1^alpha*Tc1)/Tc2)^(1/alpha)
printf("Isotopic mass at critical temperature 4.133K\n")
printf("M2=%.4f ",M2)
|
76116f564e531a322c8fe6b6d92cf8bfed8f484d | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/macros/percent/%rsp.sci | e8b04e83b48cb30255de67c3f22eb5d381aa4e17 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 197 | sci | %rsp.sci | function f=%rsp(f1,n2)
// %rsp(r,p) soustrait la matrice de polynomes p a la matrice de fractions
//rationnelles r. (r-p)
//!
[n1,d1]=f1(2:3)
[n1,d1]=simp(n1-n2.*d1,d1)
f=tlist('r',n1,d1,f1(4))
|
e5c53153d43ea8d3a53a1abb6e124a54c8551b90 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.6_12.tst | f52f9604ea7a636910f98d53a7fa04fb538c65ce | [] | 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 | 6,892 | tst | bow.6_12.tst | 6 9:0.5 17:0.1111111111111111 18:1.0 21:0.09090909090909091 25:0.25 32:1.0 48:1.0 83:1.0 185:1.0 221:0.5 242:1.0 368:0.25 593:1.0
6 6:1.0 17:0.2222222222222222 21:0.18181818181818182 23:0.07142857142857142 32:1.0 40:0.07142857142857142 44:0.017857142857142856 59:0.5 66:1.0 78:0.5 82:1.0 107:0.3333333333333333 157:0.3333333333333333 241:1.0 245:1.0 324:1.0 328:1.0 334:1.0 369:0.5 426:0.09090909090909091 447:0.25 450:0.16666666666666666 569:1.0 570:0.2 583:1.0 963:1.0 1145:1.0
6 6:0.5 8:1.0 17:0.1111111111111111 25:0.25 40:0.07142857142857142 44:0.017857142857142856 47:1.0 78:0.5 92:1.0 384:1.0 389:1.0 426:0.09090909090909091 449:1.0 481:1.0 487:1.0 682:1.0
6 4:1.0 5:1.0 6:0.5 23:0.07142857142857142 32:2.0 66:1.0 103:1.0 110:0.2 130:0.5 184:0.5 185:1.0 265:1.0 336:1.0 348:1.0 368:0.25 458:1.0 867:1.0 1363:1.0
6 17:0.1111111111111111 21:0.18181818181818182 32:1.0 48:1.0 69:0.3333333333333333 130:0.5 157:0.3333333333333333 210:0.25 232:0.5 272:1.0 324:1.0 412:1.0 516:1.0 531:1.0 745:1.0 746:1.0 1293:1.0 1437:1.0
6 18:1.0 21:0.09090909090909091 32:1.0 185:1.0
6 8:1.0 17:0.2222222222222222 21:0.18181818181818182 23:0.07142857142857142 25:0.25 32:1.0 44:0.017857142857142856 47:1.0 69:0.16666666666666666 179:0.25 221:0.5 247:1.0 266:1.0 398:1.0 1093:1.0 1172:1.0
6 13:0.25 23:0.07142857142857142 32:1.0 69:0.3333333333333333 82:1.0 184:0.5 185:1.0 210:0.25 288:1.0 328:1.0 334:1.0 366:1.0 431:1.0 449:1.0
6 6:1.0 21:0.09090909090909091 44:0.03571428571428571 48:1.0 69:0.16666666666666666 70:0.0625 83:1.0 107:0.3333333333333333 116:0.14285714285714285 128:1.0 130:0.5 185:1.0 194:1.0 253:1.0 272:1.0 350:1.0 359:0.5 368:0.25 418:1.0 451:1.0 564:1.0 565:1.0 641:1.0 764:1.0 1122:1.0
6 17:0.1111111111111111 48:1.0 65:0.16666666666666666 78:0.5 98:0.3333333333333333 222:1.0 282:1.0 376:1.0 497:1.0 603:1.0 1265:1.0
6 17:0.1111111111111111 21:0.09090909090909091 25:0.25 40:0.07142857142857142 44:0.017857142857142856 48:1.0 92:1.0 107:0.3333333333333333 193:0.1111111111111111 450:0.16666666666666666 531:1.0 936:1.0
6 65:0.3333333333333333 98:0.3333333333333333 135:1.0 157:0.3333333333333333 210:0.25 1291:1.0
6 44:0.017857142857142856 66:1.0 83:1.0 89:1.0 110:0.2 148:1.0 282:1.0 1248:1.0
6 5:1.0 6:1.5 7:1.0 13:0.25 17:0.1111111111111111 21:0.09090909090909091 25:0.25 48:1.0 57:1.0 59:0.5 70:0.125 107:0.3333333333333333 116:0.42857142857142855 119:1.0 128:1.0 130:0.5 193:0.1111111111111111 194:1.0 225:1.0 246:1.0 253:1.0 272:1.0 283:1.0 348:1.0 398:1.0 414:1.0 484:0.3333333333333333 594:1.0 641:1.0 898:1.0 942:1.0 1490:1.0
6 6:0.5 17:0.1111111111111111 21:0.09090909090909091 23:0.07142857142857142 32:1.0 44:0.017857142857142856 69:0.3333333333333333 70:0.125 98:0.3333333333333333 102:1.0 116:0.2857142857142857 130:0.5 210:0.25 217:1.0 232:0.5 253:1.0 386:1.0 426:0.09090909090909091 881:1.0 1207:1.0 1293:1.0
6 6:0.5 23:0.07142857142857142 44:0.017857142857142856 70:0.0625 83:1.0 98:0.3333333333333333 222:1.0 245:1.0 246:1.0 272:1.0 283:1.0 324:1.0 336:1.0 360:1.0 423:1.0 554:1.0 934:1.0 1408:1.0 1447:1.0
6 13:0.25 32:1.0 44:0.03571428571428571 89:1.0 148:1.0 193:0.1111111111111111 359:0.5 709:1.0
6 6:1.0 21:0.09090909090909091 23:0.07142857142857142 32:1.0 44:0.017857142857142856 70:0.0625 89:1.0 116:0.14285714285714285 148:1.0 253:1.0 299:0.5 451:1.0 454:1.0 467:0.5 570:0.2 1003:1.0 1463:1.0
6 17:0.4444444444444444 25:0.25 42:1.0 50:1.0 65:0.16666666666666666 66:1.0 98:0.3333333333333333 130:0.5 148:1.0 193:0.1111111111111111 194:0.5 195:1.0 210:0.25 225:0.5 232:0.5 235:1.0 239:1.0 454:1.0 505:1.0 732:1.0
6 6:1.0 9:0.5 19:1.0 23:0.07142857142857142 32:1.0 37:0.5 40:0.07142857142857142 44:0.017857142857142856 63:0.3333333333333333 91:1.0 107:0.3333333333333333 157:0.3333333333333333 184:0.5 185:1.0 195:1.0 275:1.0 286:1.0 941:1.0 995:1.0
6 23:0.07142857142857142 25:0.25 48:1.0 65:0.16666666666666666 69:0.16666666666666666 70:0.125 98:0.6666666666666666 107:0.3333333333333333 125:1.0 193:0.1111111111111111 255:1.0 365:1.0 418:1.0 484:0.3333333333333333 503:1.0 715:1.0
6 13:0.25 23:0.14285714285714285 65:0.3333333333333333 70:0.0625 107:0.3333333333333333 213:1.0 255:1.0 359:1.0 368:0.25 401:1.0 484:0.3333333333333333 503:1.0 569:1.0 855:0.5 942:1.0 1045:1.0 1366:1.0
6 48:1.0 70:0.0625 505:1.0 669:1.0 833:1.0
6 17:0.1111111111111111 21:0.18181818181818182 25:0.25 32:2.0 36:1.0 44:0.017857142857142856 69:0.16666666666666666 70:0.0625 163:1.0 247:1.0 282:1.0 412:1.0 449:1.0 454:1.0 772:1.0
6 6:1.0 9:0.5 13:0.25 17:0.2222222222222222 44:0.017857142857142856 68:1.0 82:1.0 83:2.0 88:1.0 98:0.3333333333333333 107:0.3333333333333333 116:0.14285714285714285 121:1.0 185:1.0 194:0.5 228:1.0 272:1.0 336:1.0 447:0.25 466:1.0 484:0.3333333333333333 554:1.0 709:1.0 934:1.0 938:1.0 1339:1.0
6 6:1.0 17:0.1111111111111111 21:0.09090909090909091 23:0.07142857142857142 25:0.25 48:1.0 148:1.0 179:0.25 253:1.0 467:0.5 570:0.2 581:1.0 627:1.0 709:1.0 1143:1.0
6 6:0.5 9:0.5 17:0.1111111111111111 40:0.07142857142857142 44:0.017857142857142856 48:2.0 116:0.14285714285714285 414:1.0 668:1.0 899:1.0 1339:1.0
6 3:0.3333333333333333 6:1.0 10:1.0 23:0.14285714285714285 25:0.5 32:1.0 40:0.14285714285714285 91:1.0 92:2.0 98:0.3333333333333333 116:0.14285714285714285 127:0.5 271:0.3333333333333333 272:1.0 348:1.0 357:1.0 396:1.0 423:1.0 426:0.09090909090909091 449:1.0 458:1.0 479:1.0 569:1.0 730:0.25 759:1.0 1215:1.0 1339:1.0 1371:1.0
6 10:1.0 65:0.16666666666666666 98:0.3333333333333333 393:1.0 615:1.0 857:0.5 1552:1.0
6 3:0.5 10:2.0 13:0.25 23:0.07142857142857142 25:0.25 40:0.07142857142857142 48:1.0 70:0.0625 91:1.0 92:1.0 98:0.3333333333333333 107:0.3333333333333333 127:0.5 228:1.0 399:1.0 449:1.0 454:1.0 456:1.0 473:1.0 675:1.0 733:1.0 814:1.0 945:1.0 997:1.0 1003:1.0 1153:1.0 1339:1.0
6 3:0.3333333333333333 10:1.0 17:0.2222222222222222 21:0.09090909090909091 92:2.0 101:1.0 179:0.25 393:1.0 949:1.0
6 6:0.5 10:1.0 92:1.0 286:1.0 1159:1.0
6 3:0.16666666666666666 59:0.5 418:1.0 803:1.0 901:1.0
6 6:0.5 10:4.0 32:1.0 40:0.07142857142857142 70:0.0625 83:1.0 107:0.3333333333333333 123:1.0 130:0.5 232:0.5 243:0.5 276:1.0 360:1.0 526:1.0 709:1.0 990:1.0
6 3:0.16666666666666666
6 3:0.16666666666666666 4:1.0 9:0.5 10:2.0 17:0.1111111111111111 66:1.0 98:0.3333333333333333 128:1.0 179:0.25 512:1.0 725:1.0
6 3:0.16666666666666666 4:1.0 21:0.09090909090909091 23:0.07142857142857142 32:1.0 39:1.0 130:0.5 193:0.1111111111111111 255:1.0 275:1.0
6 3:0.16666666666666666 4:1.0 5:1.0 6:1.0 10:1.0 13:0.25 17:0.1111111111111111 18:1.0 23:0.07142857142857142 25:0.5 34:1.0 46:1.0 48:1.0 89:1.0 130:0.5 180:1.0 242:1.0 305:1.0 348:1.0 359:0.5 452:1.0 569:1.0 1054:1.0 1112:1.0
6 3:0.16666666666666666 6:0.5 10:1.0 13:0.25 15:1.0 21:0.18181818181818182 23:0.07142857142857142 25:0.25 40:0.07142857142857142 58:0.16666666666666666 92:1.0 103:1.0 104:1.0 123:1.0 128:1.0 194:0.5 195:1.0 368:0.25 432:1.0 451:1.0 494:1.0 512:1.0 539:1.0 722:1.0 905:1.0
|
5b0182f31b4d52de8c557ea7353017e8f8ccc66f | 4f80e02b7efd948d16a7f4b3ebf47124acb45be0 | /v01/WMB flows and inputs/WMB flows and inputs/airline.tst | ec86f3668295c006d63e66c46b709df13bd2ee04 | [] | no_license | UPPIGIT/Integration | 75e53c6dee01342ef8778505ef999572354df200 | 89dd1f77531f611ece0eeaa63a262d50bdcf6498 | refs/heads/master | 2021-07-08T10:59:43.009944 | 2021-04-16T06:15:30 | 2021-04-16T06:15:30 | 234,123,881 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | tst | airline.tst |
DEFINE QLOCAL ('XML_FLIGHTQUERY_FLIGHT') REPLACE
DEFINE QLOCAL ('XML_FLIGHTQUERY_IN') REPLACE
DEFINE QLOCAL ('XML_FLIGHTQUERY_OUT') REPLACE
DEFINE QLOCAL ('XML_FLIGHTQUERY_PASSENGERS') REPLACE
DEFINE QLOCAL ('XML_FLIGHTQUERY_REPLIES') REPLACE
DEFINE QLOCAL ('XML_FLIGHTQUERY_TIMEOUT') REPLACE
DEFINE QLOCAL ('XML_FLIGHTQUERY_FAIL') REPLACE |
28f2c5dd02c8660e497309585e60f1547bbf1803 | 449d555969bfd7befe906877abab098c6e63a0e8 | /497/CH10/EX10.2/Chap10_Ex2.sce | bb6414d360accf08208dab02f75d129728cd542e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,620 | sce | Chap10_Ex2.sce | //Kunii D., Levenspiel O., 1991. Fluidization Engineering(II Edition). Butterworth-Heinemann, MA, pp 491
//Chapter-10, Example 2, Page 254
//Title: Compare the Relative Importance of Kbc and Kce
//==========================================================================================================
clear
clc
//INPUT
D=0.69;//Diffusion coefficient of gas in cm^2/s
umf=1.0;//Velocity at minimum fluidization condition in cm/s
ephsilonmf=0.5;//Void fraction at minimum fluidization condition
db=[5;15];//Equilibrium bubble size in cm
g=980;//Acceleration due to gravity in cm/s^2
//CALCULATION
n=length(db);
i=1;
while i<=n
Kbc(i)=4.5*(umf/db(i))+5.85*((D^0.5*g^0.25)/db(i)^(5/4));//Gas interchange coefficient between bubble and cloud from Eqn.(27)
Kce(i)=6.77*((D*ephsilonmf*0.711*(g*db(i))^0.5)/db(i)^3)^0.5;//Gas interchange coefficient between emulsion and cloud from Eqn.(34)
Kbe(i)=(Kbc(i)*Kce(i))/(Kbc(i)+Kce(i));//Gas interchange coefficient between bubble and emulsion from Eqn.(14)
e(i)=(Kce(i)-Kbe(i))/Kbe(i);//Error when minor resistance is ignored
i=i+1;
end
//OUTPUT
printf('\ndb(cm)');
printf('\t\tCalculated Kbc');
printf('\tCalculated Kce');
printf('\t\tKbe from Eqn.(14)');
printf('\tErron when minor resistance is ignored (in percentage)');
i=1;
while i<=n
mprintf('\n%f',db(i));
mprintf('\t%f',Kbc(i));
mprintf('\t%f',Kce(i));
mprintf('\t\t%f',Kbe(i));
mprintf('\t\t%f',e(i)*100);
i=i+1;
end
//====================================END OF PROGRAM ====================================================== |
19d1ea09dc6839d67fbdd5f6f33af621b6044b63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH2/EX2.4/example4.sce | c9a4666440844d5a3a6f9d940478c9fba66c6165 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 373 | sce | example4.sce | //Chapter-2 example 2.4
//=============================================================================
clc;
clear;
Pt=50000;//peal power in watts
PRF=1000;//pulse repetitive frequency in hz
PW=0.8;//pulse width in usec
//Calculations
D=PW*PRF*10^-6;//duty cycle
Pav=Pt*D;//average power
//output
mprintf('Duty cycle is %g\n Average power is %g Watts',D,Pav);
|
bc6ca9a2cd3d1b8dc7e125e8a0767353ea7b0a21 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH1/EX1.5/5.sce | 4befedbdc4f3d8de2014ece32ffe06d19f711a74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 327 | sce | 5.sce | clc
clear
//INPUT DATA
Q=3.56//rate of energy radiates in W
r=15//distance of intensity level in m
Io=100//reference intensity in Wm^-2
//CALCULATION
A=4*3.14*r*r//Area in m^2
I=(Q/A)//sound intensity in Wm^-2
IL=(10*log10(I/Io))//The intensity level in dB
//OUTPUT
printf('The intensity level is %3.3f dB',IL)
|
42fe808210bce83681254e7e64db66b479f1ce20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH21/EX21.1.1/ques1_1.sce | f33f28930c90c1c79d7fe6fc17e7adbac61b76be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 113 | sce | ques1_1.sce | //ques1(i)
disp('To find the laplace of given function in t ');
syms t s
disp(laplace(sin(2*t)*sin(3*t),t,s)); |
34367457f15e284c0f977c28293f88ccbfab18b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /182/CH8/EX8.3/example8_3.sce | 987b95890a6419a9da98c669a45504ac76bd5545 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 554 | sce | example8_3.sce | // to find the capacitance, resistance and the dissipation factor
// example 8-3 in page 202
clc;
//Given data
f=100;// frequency in Hz
C1=0.1e-6;// satndard capacitance in farad
R=[125 0 10e+3 14.7e+3];// resistances R1,R3 and R4 values in ohms as R2 is not used it is take as 0 for convinence
//calculation
Cs=C1*(R(3)/R(4));//series capacitance
Rs=R(1)*R(4)/R(3);// series resistance
D=2*%pi*f*Cs*Rs;// dissipation factor
printf("Cs=%.3f micro-F\nRs=%.1f ohm\nD=%.3f",Cs*10^6,Rs,D);
//result
//Cs=0.068 micro-F
//Rs=183.8 ohm
//D=0.008 |
31e21596411053a1f7458475535f8f3c88508f49 | a88bc351c907b9f0e662e251314c78a075880265 | /Scilab/Linear Iterection.sce | 7a7197622ce153c9fa93491b510df6a3900bef8e | [] | no_license | decospdl/Exercise | 2ff1161f101a892ac511c62e1dce67a07606107a | 14d61a9553aab9af259edc8af504fdaa8568ec8f | refs/heads/master | 2020-05-26T15:22:22.243902 | 2019-06-13T22:55:10 | 2019-06-13T22:55:10 | 188,279,547 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 334 | sce | Linear Iterection.sce | clear
clc
close;
deff('y = f(x)', 'y= -x^2 + 1/4')
a = -0.4
erro = 5e-5
i = 1
z = f(a)
printf('\n Iteração \t a \t\t z');
printf('\n %d \t\t %f \t %f', i, a, z);
while abs(z-a)/2 > erro
a = z
z = f(a)
i = i + 1
printf('\n %d \t\t %f \t %f', i, a, z);
end
printf('\n\nO valor do x após %d iteraçãoes = %f',i,z);
|
c2aefa14be5495baed4718aa88f77745b029d916 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/percent/%r_i_r.sci | d93ada56d3cb8fe5938e28cd9bd806d6d286f41e | [
"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 | 565 | sci | %r_i_r.sci | function s1=%r_i_r(i,j,s1,s2)
// %r_i_r(i,j,s1,s2) insertion s2(i,j)=s1
//!
// Copyright INRIA
if type(i)==10|type(j)==10 then
error(21)
end
if type(i)==4 then i=find(i),end
if type(j)==4 then j=find(j),end
[s1,s2]=sysconv(s1,s2)
[n,d]=s2(2:3)
[n1,n2]=size(d);
if type(i)<>1 then i=horner(i,n1),end
if type(j)<>1 then j=horner(j,n2),end
if size(i)<>[-1,-1] then
n3=maxi([n1,maxi(i)]);
else
n3=n1;
end
if size(j)<>[-1,-1] then
n4=maxi([n2,maxi(j)])
else
n4=n2
end
d1=ones(n3,n4);
d1(1:n1,1:n2)=d;
n(i,j)=s1(2),d1(i,j)=s1(3)
s1(2)=n;s1(3)=d1;
|
f12e4be0a81dcc63af16727df9dc0c052614557f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2681/CH1/EX1.15/Ex1_15.sce | 9113bb8bf848658d7793e28a4414c9736462dd46 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 262 | sce | Ex1_15.sce | //find the phase shift of the wave
//given
f=1d+9//Hz
v0=3d+8//m/s
lem=v0/f//calculating wavelength
b=2*%pi/lem//calculating phase shift
b=round(b*100)/100///rounding off decimals
disp(b,lem,'the wavelength and phase shift respectively')//in rad/m and m
|
b29a73d97c28a66b917c4ac22b0239c89d313480 | 57a39df08383d18148a77915551223cef3bc8cd6 | /rootlocus.sce | 1e4c3f4176a4243dde70ef88651f1aa39c732b70 | [] | no_license | sonusharma55/Misc.-MATLAB-Scilab | 0abbc7ab22e963b3b3e147a18e17af2f3021d3ce | dbfaab1b84719948ef665798c4192e6ca934e46a | refs/heads/master | 2020-07-25T22:00:11.975476 | 2019-09-14T12:31:37 | 2019-09-14T12:31:37 | 208,434,501 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 53 | sce | rootlocus.sce | s=%s
n=(1+s)^2
d=s^3
l=syslin('c',n,d)
evans(l)
|
368a2e325e53ebf1237ec28b31df02a6ccf37b18 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1088/CH19/EX19.12/Example12.sce | c58df0778efce0602da3e4b1e8690451cf722f33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,150 | sce | Example12.sce | clear
mode(-1)
pwd
curr=ans
clc
printf("Example 12 : Show the method of using %cASSOCIATIVE ARRAYS%c in perl \n",ascii(39),ascii(39))
disp("****************************************************************")
disp("Answer : ")
disp("INSTRUCTIONS : ")
printf("\n1. Here all instructions are preloaded in the form of a demo\n\nInitially the whole perl script is displaying and then \n the result of the same can be seen in the command line interpreter.\n\n2. PLEASE MAKE SURE THAT THE PERLSCRIPT INTERPRETER\nEXISTS IN THE SYSTEM\nOR THE COMMAND WOULD NOT WORK \n\n3. PRESS ENTER AFTER EACH COMMAND to see its RESULT\n\n4. PRESS ENTER AFTER EACH RESULT TO GO TO THE NEXT COMMAND\n")
halt('.............Press [ENTER] to continue.....')
halt("")
clc
printf("\tUNIX SHELL SIMULATOR(DEMO VERSION WITH PRELOADED COMMANDS)\n\n\n")
printf("\n# Enter the name of the perlscript file whichever you desire \n\n")
nam=input('$ cat ','s')
halt(' ')
clc
printf("\n$ cat %s #to open perlscript file %s \n ",nam,nam)
li(1)='#!/usr/bin/perl'
li(2)='# Script: '+nam+'.pl - Uses an associative array '
li(3)="#"
li(4)='%region = ('+ascii(34)+'N'+ascii(34)+','+ascii(34)+'North'+ascii(34)+','+ascii(34)+'S'+ascii(34)+','+ascii(34)+'South'+ascii(34)+','+ascii(34)+'E'+ascii(34)+','+ascii(34)+'East'+ascii(34)+','+ascii(34)+'W'+ascii(34)+','+ascii(34)+'West'+ascii(34)+') ;'
li(5)='die('+ascii(34)+'Nothing entered in commandline\n'+ascii(34)+') if (@ARGV == 0 ) ;'
li(6)='foreach $letter (@ARGV) {'
li(7)=' print('+ascii(34)+'The letter $letter stands for $region{$letter}'+ascii(34)+'.'+ascii(34)+'\n'+ascii(34)+') ; '
li(8)='}'
li(9)='@key_list = keys(%region) ; # List of subscripts'
li(10)='print('+ascii(34)+'The subscripts are @key_list\n'+ascii(34)+') ; '
li(11)='@value_list = values %region ; # List of values'
li(12)='print('+ascii(34)+'The values are @value_list\n'+ascii(34)+') ; '
li(13)='print('+ascii(34)+'\n\nType'+ascii(39)+'exit'+ascii(39)+'to go back to console\n\n'+ascii(34)+')'
halt(' ')
v=mopen(nam+'.pl','wt')
for i=1:13
mfprintf(v,"%s\n",li(i))
if i~=13 then
printf("%s\n",li(i))
end
end
mclose(v)
if getos()=='Linux' then
printf("\n\nPlease open a new terminal window and then go to the directory %s and execute the following instruction\n\nperl %s.pl [Command line parameters if any]\n\nThank You \n\n",curr,nam)
halt(' ')
exit
end
printf("\n# type the following command in the command line interpreter as soon as it appears")
printf(" \n %c perl %s.pl %c[ENTER]\n\n",ascii(34),nam,ascii(34))
printf("\n$ perl %s.pl #to execute the perlscript",nam)
halt(' ')
dos('start')
printf("\n\n\n")
halt(' ---------------->Executing PerlScript in Command Line Prompt<-------------- ')
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)
mdelete(nam+'.pl')
|
cc38434b178452cca46c82d914ce438ff7ec15c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH8/EX8.8/8_8.sce | 0686c18f505ddfc1c750982411e48eaa47c5af3a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 446 | sce | 8_8.sce | t1half=37.00;//half time for the first order reaction//
t2half=19.2;//half time for the second order reaction//
t3half=9.45;//half time for the third order reaction//
printf('to know the order of the equation we can use 2^(n-1)=t1half/t2half');
printf('\nby solving for first and second order n=1.95\nby solving for second and third order n=2.02');
printf('\nby solving for first and third order n=1.98\nSo the order of the reaction=n=2');
|
32759527f3791b401c4f2a8784c246ebd69cf540 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3828/CH10/EX10.3/Ex10_3.sce | 05469723d6bc0d7fc13ebdfcd4ae109cec65efc4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex10_3.sce | //Chapter 10 : Crystallography and Crystal Imperfections
clear;
//Variable declaration
M=58.5 //formula weigth
rho=2180 //density of material
n=4 //No. of atoms/cell
No=6.02*10**26 //Avagadro's No.
//Calculations
a=((n*M)/(No*rho))**(1/3)/10**-10/2
//Result
mprintf("Distance between like atoms a= %.5f*10**-10 m",2*a)
mprintf("\nDistance between adjacent atoms a/2= %.2f*10**-10 m",a)
|
bfeb006d748377d24bbfd731fa4ec1ffc5fce64f | 717ddeb7e700373742c617a95e25a2376565112c | /3044/CH12/EX12.1/Ex12_1.sce | e280351cbcfae9e1b084f91b957acacc02abaaf6 | [] | 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 | 677 | sce | Ex12_1.sce | // Variable declaration
A = [0.25,0.27,0.22,0.30,0.27,0.28,0.32,0.24,0.31,0.26,0.21,0.28]
B = [0.18,0.28,0.21,0.23,0.25,0.20,0.27,0.19,0.24,0.22,0.29,0.16]
C = [0.19,0.25,0.27,0.24,0.18,0.26,0.28,0.24,0.25,0.20,0.21,0.19]
D = [0.23,0.30,0.28,0.28,0.24,0.34,0.20,0.18,0.24,0.28,0.22,0.21]
k = 4
n = 12
// Calculation
A_sum = sum(A)
B_sum = sum(B)
C_sum = sum(C)
D_sum = sum(D)
T = A_sum+B_sum+C_sum+D_sum
c = (T^2)/(4*n)
SST = 0
for i = 1:12
SST = SST + A(i)^2 + B(i)^2 + C(i)^2 + D(i)^2
end
SST = SST - c
SSTR = (A_sum^2 + B_sum^2 + C_sum^2 + D_sum^2)/n - c
SSE = SST - SSTR
// Result
printf ( "SST: %.4f",SST)
printf ( "SSTR: %.4f",SSTR)
printf ( "SSE: %.4f",SSE)
|
a59538fd0b4f1c920f870c2e8e86d2b93750d2c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2175/CH3/EX3.1/3_1.sce | 8e8ca00ea226cdafb730926051f013378382b0c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 478 | sce | 3_1.sce | clc
//at 2bar
h1=2707;//kJ/kg
hg=h1;
m1=0.05;//kg
v=0.0658;//m^3
v2=v/m1;//m^3/kg
h2=3072;//kJ/kg
p=2*10^5;
v1=0.8856
Q=m1*(h2-h1);
disp("heat suppleid is:");
disp("kJ",Q);
W=-p*(v2-v1);
disp("work done is:");
disp("N m/kg",W);
//part (ii)
p2=p;
R=0.287;
T2=p2*v/(m1*R*1000);
cp=1.005;
T1=130+273;
Q=m1*cp*(T2-T1);
disp("heat supplie in part (ii)");
disp("kJ",Q);
W=-R*(T2-T1)*m1;
disp("work done by the mass of gas presint:");
disp("kJ",W);
|
233c5cbfd44b788df27cd61dbd2b0c21f385d79f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1085/CH3/EX3.13/ex3_13.sce | 329368c24ab44e0199f788a861c8c4abe143145a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex3_13.sce | //Exam:3.13
clc;
clear;
close;
r=1.245;//radius of nickel (in A)
a=4*r/(2)^(1/2);//Lattice constant(in A)
//Miller indices of plane 200
h_1=2;
k_1=0;
l_1=0;
//Miller indices of plane 111
h_2=1;
k_2=1;
l_2=1;
d_200=a/((h_1^2)+(k_1^2)+(l_1^2))^(1/2);
d_111=a/((h_2^2)+(k_2^2)+(l_2^2))^(1/2);
disp(d_200,'interplaner distance of (200) plane of nickel crystal(in A)=');
disp(d_111,'interplaner distance of (111) plane of nickel crystal(in A)='); |
fc1ae221b18bddd1a1d5b88729b54f506a5dfeac | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH14/EX14.6/14_06.sce | 3497e40f4ad4b46950551e6c0c3428eeee511e89 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 175 | sce | 14_06.sce | //Chapter 14, Problem 6
clc;
I=20; //peak value current
Irms=0.707*I; //rms value
printf("r.m.s. value of a sinusoidal current = %f A",Irms);
|
6699572abc417be4d63bc695941a9c1528ac04bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3506/CH5/EX5.3/Exp_5_3.sce | 27389f7a8f8ef2e1dce23692edad1edd1cef3dc6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 529 | sce | Exp_5_3.sce | //Optical Fiber communication by A selvarajan
//example 5.3
//OS=Windows XP sp3
//Scilab version 5.5.1
clc;
clear all;
//given
tau_tr=2*1e-9//transit time in sec
Rl=50//load resistance in ohm
Cd=3*1e-12//Junction capacitance in farad
tau=2*Rl*Cd//Circuit time constant in sec
f3dB=(0.35/tau_tr)//3dB bandwidth in Hz
mprintf("Circuit time constant =%f ns",tau*1e9)//multiplication by 1e9 to convert unit from s to ns
mprintf("\n3dB bandwidth=%fMHz",f3dB*1e-6)//multiplication by 1e-6 to convert unit from Hz to MHz
|
46e2a91e1cb404f21b4ff8018cf541ba870b0b2c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH7/EX7.22/Ex7_22.sce | be93a8a7fd82e3cdbb51bda79ebaed6539fd1d51 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | Ex7_22.sce | clc
//to calculate probability of finding the particle
a=25*10^-10//width in angstrom
//wave function of the particle is chi(x)=sqrt(2/a)*sin(n*%pi*x/a),for the particle in the least energy state n=1
chix=sqrt(2/a)*sin(%pi*(a/2)/a)
delx=5*10^-10 //interval in angstrom
P=delx*chix^2
disp("probability of finding the particle is P="+string(P)+"unitless")
|
54d4def96ee83f7dc0dcb96b454b2505eeaabc84 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/MX03.prev.tst | 8f88701c59811258b5adbf48092084f9ae1a3938 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 29,497 | tst | MX03.prev.tst | chain 2, fact 0 [[-9,-2,8][4,-5,4][-4,-5,9]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-9,-2,8][4,-5,4][0,2,1]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-9,-2,8][4,-5,4][4,9,-7]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-9,-2,8][8,2,-4][-4,-5,9]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-9,-2,8][8,2,-4][0,2,1]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-9,-2,8][8,2,-4][4,9,-7]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-9,3,6][-7,6,1][0,3,1]] [3,4,5] => [15,8,17] => [-9,-40,41]
chain 2, fact 0 [[-9,3,6][-7,6,1][7,9,-8]] [3,4,5] => [15,8,17] => [-9,-40,41]
chain 2, fact 0 [[-9,3,6][-2,-4,6][0,3,1]] [3,4,5] => [15,8,17] => [-9,40,41]
chain 2, fact 0 [[-9,3,6][-2,-4,6][7,9,-8]] [3,4,5] => [15,8,17] => [-9,40,41]
chain 2, fact 0 [[-9,3,6][5,2,-3][0,3,1]] [3,4,5] => [15,8,17] => [-9,40,41]
chain 2, fact 0 [[-9,3,6][5,2,-3][7,9,-8]] [3,4,5] => [15,8,17] => [-9,40,41]
chain 2, fact 0 [[-9,4,7][-6,5,1][-3,1,6]] [3,4,5] => [24,7,25] => [-13,-84,85]
chain 8, fact 0 [[-8,-1,7][-4,4,4][-8,1,9]] [3,4,5] => [7,24,25] => [95,168,193] => [423,1064,1145]
chain 2, fact 0 [[-8,1,7][-6,4,2][-8,-1,9]] [3,4,5] => [15,8,17] => [7,-24,25]
chain 2, fact 0 [[-8,1,7][-6,4,2][-1,5,0]] [3,4,5] => [15,8,17] => [7,-24,25]
chain 2, fact 0 [[-8,1,7][-3,-2,5][-8,-1,9]] [3,4,5] => [15,8,17] => [7,24,25]
chain 2, fact 0 [[-8,1,7][-3,-2,5][-1,5,0]] [3,4,5] => [15,8,17] => [7,24,25]
chain 3, fact 0 [[-8,1,7][4,4,-4][-8,-1,9]] [3,4,5] => [15,8,17] => [7,24,25] => [143,24,145]
chain 2, fact 0 [[-8,1,7][4,4,-4][-1,5,0]] [3,4,5] => [15,8,17] => [7,24,25]
chain 2, fact 0 [[-8,6,1][0,-2,4][-8,-2,9]] [3,4,5] => [5,12,13] => [45,28,53]
chain 2, fact 0 [[-8,6,1][0,-2,4][-4,5,1]] [3,4,5] => [5,12,13] => [45,28,53]
chain 2, fact 0 [[-8,6,1][4,5,-4][-8,-2,9]] [3,4,5] => [5,12,13] => [45,28,53]
chain 2, fact 0 [[-8,6,1][4,5,-4][-4,5,1]] [3,4,5] => [5,12,13] => [45,28,53]
chain 2, fact 0 [[-8,6,3][-5,-3,7][-6,0,7]] [3,4,5] => [15,8,17] => [-21,20,29]
chain 2, fact 0 [[-8,6,3][-5,-3,7][1,6,-2]] [3,4,5] => [15,8,17] => [-21,20,29]
chain 2, fact 0 [[-8,6,3][-4,5,0][-6,0,7]] [3,4,5] => [15,8,17] => [-21,-20,29]
chain 2, fact 0 [[-8,6,3][-4,5,0][1,6,-2]] [3,4,5] => [15,8,17] => [-21,-20,29]
chain 2, fact 0 [[-8,6,3][2,3,-2][-6,0,7]] [3,4,5] => [15,8,17] => [-21,20,29]
chain 2, fact 0 [[-8,6,3][2,3,-2][1,6,-2]] [3,4,5] => [15,8,17] => [-21,20,29]
chain 2, fact 0 [[-8,8,0][5,-5,4][-2,2,3]] [3,4,5] => [8,15,17] => [56,33,65]
chain 2, fact 0 [[-7,2,4][9,-7,5][4,2,1]] [3,4,5] => [7,24,25] => [99,20,101]
chain 2, fact 0 [[-7,2,5][0,-5,5][3,1,0]] [3,4,5] => [12,5,13] => [-9,40,41]
chain 2, fact 0 [[-7,2,5][9,2,-6][3,1,0]] [3,4,5] => [12,5,13] => [-9,40,41]
chain 8, fact 0 [[-7,4,8][-4,1,4][-8,4,9]] [3,4,5] => [35,12,37] => [99,20,101] => [195,28,197]
chain 2, fact 0 [[-7,4,8][-3,4,1][-8,4,9]] [3,4,5] => [35,12,37] => [99,-20,101]
chain 2, fact 0 [[-7,4,8][7,9,-9][-8,4,9]] [3,4,5] => [35,12,37] => [99,20,101]
chain 2, fact 0 [[-7,7,0][-1,-2,7][-4,3,5]] [3,4,5] => [7,24,25] => [119,120,169]
chain 2, fact 0 [[-7,7,0][4,8,-4][-4,3,5]] [3,4,5] => [7,24,25] => [119,120,169]
chain 2, fact 0 [[-7,9,0][-8,8,0][-2,-3,7]] [3,4,5] => [15,8,17] => [-33,-56,65]
chain 2, fact 0 [[-7,9,0][-8,8,0][5,3,-2]] [3,4,5] => [15,8,17] => [-33,-56,65]
chain 2, fact 0 [[-7,9,0][-1,-6,7][-2,-3,7]] [3,4,5] => [15,8,17] => [-33,56,65]
chain 2, fact 0 [[-7,9,0][-1,-6,7][5,3,-2]] [3,4,5] => [15,8,17] => [-33,56,65]
chain 2, fact 0 [[-7,9,0][6,0,-2][-2,-3,7]] [3,4,5] => [15,8,17] => [-33,56,65]
chain 2, fact 0 [[-7,9,0][6,0,-2][5,3,-2]] [3,4,5] => [15,8,17] => [-33,56,65]
chain 2, fact 0 [[-7,9,4][-5,-2,7][-7,7,6]] [3,4,5] => [35,12,37] => [11,60,61]
chain 2, fact 0 [[-7,9,4][-2,7,-2][-7,7,6]] [3,4,5] => [35,12,37] => [11,-60,61]
chain 2, fact 0 [[-7,9,4][6,6,-6][-7,7,6]] [3,4,5] => [35,12,37] => [11,60,61]
chain 2, fact 0 [[-6,-3,9][4,-6,4][3,-3,4]] [3,4,5] => [15,8,17] => [39,80,89]
chain 2, fact 0 [[-6,2,3][-6,5,2][-6,9,-1]] [3,4,5] => [5,12,13] => [33,56,65]
chain 2, fact 0 [[-6,2,5][1,-5,5][-4,-4,9]] [3,4,5] => [15,8,17] => [11,60,61]
chain 2, fact 0 [[-6,2,5][1,-5,5][3,2,0]] [3,4,5] => [15,8,17] => [11,60,61]
chain 2, fact 0 [[-6,2,5][8,1,-4][-4,-4,9]] [3,4,5] => [15,8,17] => [11,60,61]
chain 2, fact 0 [[-6,2,5][8,1,-4][3,2,0]] [3,4,5] => [15,8,17] => [11,60,61]
chain 8, fact 0 [[-6,3,3][2,6,2][-2,3,7]] [3,4,5] => [9,40,41] => [189,340,389] => [1053,3196,3365]
chain 2, fact 0 [[-6,5,2][-4,3,1][-5,-3,8]] [3,4,5] => [12,5,13] => [-21,-20,29]
chain 2, fact 0 [[-6,5,2][-4,3,1][4,4,-3]] [3,4,5] => [12,5,13] => [-21,-20,29]
chain 2, fact 0 [[-6,7,6][9,-2,-2][8,8,-3]] [3,4,5] => [40,9,41] => [69,260,269]
chain 2, fact 0 [[-5,-2,7][-4,3,1][-5,-3,8]] [3,4,5] => [12,5,13] => [21,-20,29]
chain 2, fact 0 [[-5,-2,7][-4,3,1][4,4,-3]] [3,4,5] => [12,5,13] => [21,-20,29]
chain 2, fact 0 [[-5,5,0][4,-5,4][-4,-5,9]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-5,5,0][4,-5,4][0,2,1]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-5,5,0][4,-5,4][4,9,-7]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-5,5,0][8,2,-4][-4,-5,9]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-5,5,0][8,2,-4][0,2,1]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-5,5,0][8,2,-4][4,9,-7]] [3,4,5] => [5,12,13] => [35,12,37]
chain 2, fact 0 [[-5,7,-1][2,6,-3][-5,3,4]] [3,4,5] => [8,15,17] => [48,55,73]
chain 2, fact 0 [[-4,-4,7][-1,3,3][-4,-2,9]] [3,4,5] => [7,24,25] => [51,140,149]
chain 2, fact 0 [[-4,-4,7][-1,3,3][1,8,-2]] [3,4,5] => [7,24,25] => [51,140,149]
chain 2, fact 0 [[-4,-2,5][0,-7,8][0,-3,5]] [3,4,5] => [5,12,13] => [21,20,29]
chain 2, fact 0 [[-4,-2,5][0,-7,8][4,4,-3]] [3,4,5] => [5,12,13] => [21,20,29]
chain 2, fact 0 [[-4,-2,5][4,0,0][0,-3,5]] [3,4,5] => [5,12,13] => [21,20,29]
chain 2, fact 0 [[-4,-2,5][4,0,0][4,4,-3]] [3,4,5] => [5,12,13] => [21,20,29]
chain 2, fact 0 [[-4,-2,5][8,7,-8][0,-3,5]] [3,4,5] => [5,12,13] => [21,20,29]
chain 2, fact 0 [[-4,-2,5][8,7,-8][4,4,-3]] [3,4,5] => [5,12,13] => [21,20,29]
chain 8, fact 0 [[-4,1,4][-7,4,8][-8,4,9]] [3,4,5] => [12,35,37] => [135,352,377] => [1320,3479,3721]
chain 2, fact 0 [[-4,1,4][0,-5,5][3,1,0]] [3,4,5] => [12,5,13] => [9,40,41]
chain 2, fact 0 [[-4,1,4][9,2,-6][3,1,0]] [3,4,5] => [12,5,13] => [9,40,41]
chain 2, fact 0 [[-4,2,3][5,5,5][4,6,5]] [3,4,5] => [11,60,61] => [259,660,709]
chain 2, fact 0 [[-4,6,-1][4,-7,8][1,-2,6]] [3,4,5] => [7,24,25] => [91,60,109]
chain 2, fact 0 [[-4,6,-1][4,-7,8][6,8,-5]] [3,4,5] => [7,24,25] => [91,60,109]
chain 2, fact 0 [[-4,6,-1][9,3,-3][1,-2,6]] [3,4,5] => [7,24,25] => [91,60,109]
chain 2, fact 0 [[-4,6,-1][9,3,-3][6,8,-5]] [3,4,5] => [7,24,25] => [91,60,109]
chain 8, fact 0 [[-4,7,-1][8,4,4][4,1,9]] [3,4,5] => [11,60,61] => [315,572,653] => [2091,7420,7709]
chain 2, fact 0 [[-4,7,1][0,-5,8][-4,-1,9]] [3,4,5] => [21,20,29] => [85,132,157]
chain 2, fact 0 [[-4,7,1][0,-5,8][4,8,-3]] [3,4,5] => [21,20,29] => [85,132,157]
chain 8, fact 0 [[-4,7,1][8,4,-4][-4,-1,9]] [3,4,5] => [21,20,29] => [85,132,157] => [741,580,941]
chain 2, fact 0 [[-4,7,1][8,4,-4][4,8,-3]] [3,4,5] => [21,20,29] => [85,132,157]
chain 8, fact 0 [[-4,7,8][-1,4,4][-4,8,9]] [3,4,5] => [56,33,65] => [527,336,625] => [5244,3317,6205]
chain 2, fact 0 [[-4,8,-1][6,-5,2][1,-4,6]] [3,4,5] => [15,8,17] => [-13,84,85]
chain 2, fact 0 [[-4,8,-1][6,-5,2][8,2,-3]] [3,4,5] => [15,8,17] => [-13,84,85]
chain 2, fact 0 [[-4,9,0][-2,-3,5][2,6,-1]] [3,4,5] => [24,7,25] => [-33,56,65]
chain 2, fact 0 [[-3,-4,6][6,-4,2][2,-7,7]] [3,4,5] => [5,12,13] => [15,8,17]
chain 2, fact 0 [[-3,-4,6][6,-4,2][6,0,-1]] [3,4,5] => [5,12,13] => [15,8,17]
chain 2, fact 0 [[-3,-1,4][6,-6,6][7,1,0]] [3,4,5] => [7,24,25] => [55,48,73]
chain 8, fact 0 [[-3,6,6][2,3,2][-2,6,7]] [3,4,5] => [45,28,53] => [351,280,449] => [3321,2440,4121]
chain 2, fact 0 [[-3,8,-3][6,-7,5][-1,-5,8]] [3,4,5] => [8,15,17] => [45,28,53]
chain 2, fact 0 [[-3,8,-3][6,-7,5][6,6,-5]] [3,4,5] => [8,15,17] => [45,28,53]
chain 2, fact 0 [[-3,9,-4][-4,4,4][-8,1,9]] [3,4,5] => [7,24,25] => [95,168,193]
chain 2, fact 0 [[-2,-8,9][-6,3,6][-6,2,7]] [3,4,5] => [7,24,25] => [19,180,181]
chain 2, fact 0 [[-2,-6,7][-2,2,2][-2,1,3]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[-2,-6,7][-2,2,2][2,8,-5]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[-2,-6,7][2,9,-6][-2,1,3]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[-2,-6,7][2,9,-6][2,8,-5]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[-2,-3,5][4,-2,4][6,3,-1]] [3,4,5] => [7,24,25] => [39,80,89]
chain 2, fact 0 [[-2,-3,5][9,8,-7][6,3,-1]] [3,4,5] => [7,24,25] => [39,80,89]
chain 8, fact 0 [[-2,1,2][-1,2,2][-2,2,3]] [3,4,5] => [8,15,17] => [33,56,65] => [120,209,241]
chain 7, fact 0 [[-2,3,2][3,6,6][2,6,7]] [3,4,5] => [16,63,65] => [287,816,865] => [3604,10947,11525]
chain 8, fact 0 [[-2,3,3][-6,2,6][-6,3,7]] [3,4,5] => [21,20,29] => [105,88,137] => [465,368,593]
chain 2, fact 0 [[-2,7,-2][-5,0,4][-4,0,5]] [3,4,5] => [12,5,13] => [-15,-8,17]
chain 2, fact 0 [[-2,7,-2][-5,0,4][5,7,-6]] [3,4,5] => [12,5,13] => [-15,-8,17]
chain 2, fact 0 [[-2,7,-2][4,7,-7][-4,0,5]] [3,4,5] => [12,5,13] => [-15,-8,17]
chain 2, fact 0 [[-2,7,-2][4,7,-7][5,7,-6]] [3,4,5] => [12,5,13] => [-15,-8,17]
chain 2, fact 0 [[-2,9,-5][-6,5,2][-6,9,-1]] [3,4,5] => [5,12,13] => [33,56,65]
chain 2, fact 0 [[-2,9,-3][-7,6,1][0,3,1]] [3,4,5] => [15,8,17] => [-9,-40,41]
chain 2, fact 0 [[-2,9,-3][-7,6,1][7,9,-8]] [3,4,5] => [15,8,17] => [-9,-40,41]
chain 2, fact 0 [[-2,9,-3][-2,-4,6][0,3,1]] [3,4,5] => [15,8,17] => [-9,40,41]
chain 2, fact 0 [[-2,9,-3][-2,-4,6][7,9,-8]] [3,4,5] => [15,8,17] => [-9,40,41]
chain 2, fact 0 [[-2,9,-3][5,2,-3][0,3,1]] [3,4,5] => [15,8,17] => [-9,40,41]
chain 2, fact 0 [[-2,9,-3][5,2,-3][7,9,-8]] [3,4,5] => [15,8,17] => [-9,40,41]
chain 2, fact 0 [[-1,-6,7][9,-8,4][8,-8,5]] [3,4,5] => [8,15,17] => [21,20,29]
chain 2, fact 0 [[-1,-3,4][-8,4,4][-8,3,5]] [3,4,5] => [5,12,13] => [11,60,61]
chain 2, fact 0 [[-1,-3,6][-9,0,7][-2,-3,7]] [3,4,5] => [15,8,17] => [63,-16,65]
chain 2, fact 0 [[-1,-3,6][-9,0,7][5,3,-2]] [3,4,5] => [15,8,17] => [63,-16,65]
chain 2, fact 0 [[-1,-3,6][-7,-4,9][-2,-3,7]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[-1,-3,6][-7,-4,9][5,3,-2]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[-1,-3,6][-2,6,-2][-2,-3,7]] [3,4,5] => [15,8,17] => [63,-16,65]
chain 2, fact 0 [[-1,-3,6][-2,6,-2][5,3,-2]] [3,4,5] => [15,8,17] => [63,-16,65]
chain 2, fact 0 [[-1,-3,6][0,2,0][-2,-3,7]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[-1,-3,6][0,2,0][5,3,-2]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[-1,-3,6][7,8,-9][-2,-3,7]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[-1,-3,6][7,8,-9][5,3,-2]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[-1,-3,7][4,6,-3][2,2,3]] [3,4,5] => [20,21,29] => [120,119,169]
chain 2, fact 0 [[-1,-1,3][4,2,-1][-1,-5,8]] [3,4,5] => [8,15,17] => [28,45,53]
chain 2, fact 0 [[-1,-1,3][4,2,-1][6,6,-5]] [3,4,5] => [8,15,17] => [28,45,53]
chain 2, fact 0 [[-1,2,2][-7,1,5][-2,2,3]] [3,4,5] => [15,8,17] => [35,-12,37]
chain 2, fact 0 [[-1,2,2][-7,1,5][5,8,-6]] [3,4,5] => [15,8,17] => [35,-12,37]
chain 8, fact 0 [[-1,2,2][-2,1,2][-2,2,3]] [3,4,5] => [15,8,17] => [35,12,37] => [63,16,65]
chain 2, fact 0 [[-1,2,2][-2,1,2][5,8,-6]] [3,4,5] => [15,8,17] => [35,12,37]
chain 2, fact 0 [[-1,2,2][0,7,-4][-2,2,3]] [3,4,5] => [15,8,17] => [35,-12,37]
chain 2, fact 0 [[-1,2,2][0,7,-4][5,8,-6]] [3,4,5] => [15,8,17] => [35,-12,37]
chain 2, fact 0 [[-1,2,2][5,7,-7][-2,2,3]] [3,4,5] => [15,8,17] => [35,12,37]
chain 2, fact 0 [[-1,2,2][5,7,-7][5,8,-6]] [3,4,5] => [15,8,17] => [35,12,37]
chain 7, fact 0 [[-1,4,4][-4,7,8][-4,8,9]] [3,4,5] => [33,56,65] => [451,780,901] => [6273,10864,12545]
chain 2, fact 0 [[-1,7,-2][-6,4,2][-8,-1,9]] [3,4,5] => [15,8,17] => [7,-24,25]
chain 2, fact 0 [[-1,7,-2][-6,4,2][-1,5,0]] [3,4,5] => [15,8,17] => [7,-24,25]
chain 2, fact 0 [[-1,7,-2][-3,-2,5][-8,-1,9]] [3,4,5] => [15,8,17] => [7,24,25]
chain 2, fact 0 [[-1,7,-2][-3,-2,5][-1,5,0]] [3,4,5] => [15,8,17] => [7,24,25]
chain 2, fact 0 [[-1,7,-2][4,4,-4][-8,-1,9]] [3,4,5] => [15,8,17] => [7,24,25]
chain 2, fact 0 [[-1,7,-2][4,4,-4][-1,5,0]] [3,4,5] => [15,8,17] => [7,24,25]
chain 2, fact 0 [[0,-8,8][-1,7,-2][-2,2,3]] [3,4,5] => [8,15,17] => [16,63,65]
chain 2, fact 0 [[0,-1,3][-1,7,7][0,9,5]] [3,4,5] => [11,60,61] => [123,836,845]
chain 8, fact 0 [[0,3,0][-5,0,4][-4,0,5]] [3,4,5] => [12,5,13] => [15,-8,17] => [-24,-7,25]
chain 2, fact 0 [[0,3,0][-5,0,4][5,7,-6]] [3,4,5] => [12,5,13] => [15,-8,17]
chain 2, fact 0 [[0,3,0][4,7,-7][-4,0,5]] [3,4,5] => [12,5,13] => [15,-8,17]
chain 2, fact 0 [[0,3,0][4,7,-7][5,7,-6]] [3,4,5] => [12,5,13] => [15,-8,17]
chain 8, fact 0 [[0,3,0][5,0,4][4,0,5]] [3,4,5] => [12,35,37] => [105,208,233] => [624,1457,1585]
chain 2, fact 0 [[0,5,-3][0,-7,8][0,-3,5]] [3,4,5] => [5,12,13] => [21,20,29]
chain 2, fact 0 [[0,5,-3][0,-7,8][4,4,-3]] [3,4,5] => [5,12,13] => [21,20,29]
chain 8, fact 0 [[0,5,-3][4,0,0][0,-3,5]] [3,4,5] => [5,12,13] => [21,20,29] => [13,84,85]
chain 2, fact 0 [[0,5,-3][4,0,0][4,4,-3]] [3,4,5] => [5,12,13] => [21,20,29]
chain 2, fact 0 [[0,5,-3][8,7,-8][0,-3,5]] [3,4,5] => [5,12,13] => [21,20,29]
chain 2, fact 0 [[0,5,-3][8,7,-8][4,4,-3]] [3,4,5] => [5,12,13] => [21,20,29]
chain 8, fact 0 [[0,5,3][4,0,0][0,3,5]] [3,4,5] => [35,12,37] => [171,140,221] => [1363,684,1525]
chain 8, fact 0 [[0,5,4][3,0,0][0,4,5]] [3,4,5] => [40,9,41] => [209,120,241] => [1564,627,1685]
chain 2, fact 0 [[1,-9,8][9,-2,1][9,-3,2]] [3,4,5] => [7,24,25] => [-9,40,41]
chain 8, fact 0 [[1,-4,4][4,-7,8][4,-8,9]] [3,4,5] => [7,24,25] => [11,60,61] => [15,112,113]
chain 2, fact 0 [[1,-4,4][4,-7,8][9,2,-2]] [3,4,5] => [7,24,25] => [11,60,61]
chain 2, fact 0 [[1,-4,4][9,3,-3][4,-8,9]] [3,4,5] => [7,24,25] => [11,60,61]
chain 2, fact 0 [[1,-4,4][9,3,-3][9,2,-2]] [3,4,5] => [7,24,25] => [11,60,61]
chain 8, fact 0 [[1,-2,2][2,-1,2][2,-2,3]] [3,4,5] => [5,12,13] => [7,24,25] => [9,40,41]
chain 2, fact 0 [[1,-2,2][2,-1,2][6,5,-5]] [3,4,5] => [5,12,13] => [7,24,25]
chain 2, fact 0 [[1,-2,2][6,6,-6][2,-2,3]] [3,4,5] => [5,12,13] => [7,24,25]
chain 2, fact 0 [[1,-2,2][6,6,-6][6,5,-5]] [3,4,5] => [5,12,13] => [7,24,25]
chain 8, fact 0 [[1,2,2][2,1,2][2,2,3]] [3,4,5] => [21,20,29] => [119,120,169] => [697,696,985]
chain 2, fact 0 [[1,3,-2][6,-4,2][2,-7,7]] [3,4,5] => [5,12,13] => [15,8,17]
chain 2, fact 0 [[1,3,-2][6,-4,2][6,0,-1]] [3,4,5] => [5,12,13] => [15,8,17]
chain 2, fact 0 [[1,3,0][4,-6,4][3,-3,4]] [3,4,5] => [15,8,17] => [39,80,89]
chain 2, fact 0 [[1,4,1][3,2,-2][-3,1,6]] [3,4,5] => [24,7,25] => [77,36,85]
chain 6, fact 0 [[1,4,4][4,7,8][4,8,9]] [3,4,5] => [39,80,89] => [715,1428,1597] => [12815,25632,28657]
chain 2, fact 0 [[1,6,-4][-1,3,3][-4,-2,9]] [3,4,5] => [7,24,25] => [51,140,149]
chain 2, fact 0 [[1,6,-4][-1,3,3][1,8,-2]] [3,4,5] => [7,24,25] => [51,140,149]
chain 2, fact 0 [[1,8,-4][1,-5,5][-4,-4,9]] [3,4,5] => [15,8,17] => [11,60,61]
chain 2, fact 0 [[1,8,-4][1,-5,5][3,2,0]] [3,4,5] => [15,8,17] => [11,60,61]
chain 8, fact 0 [[1,8,-4][8,1,-4][-4,-4,9]] [3,4,5] => [15,8,17] => [11,60,61] => [247,-96,265]
chain 2, fact 0 [[1,8,-4][8,1,-4][3,2,0]] [3,4,5] => [15,8,17] => [11,60,61]
chain 7, fact 0 [[1,8,4][8,1,4][4,4,9]] [3,4,5] => [55,48,73] => [731,780,1069] => [11247,10904,15665]
chain 2, fact 0 [[2,-9,7][2,-1,2][2,-2,3]] [3,4,5] => [5,12,13] => [-7,24,25]
chain 2, fact 0 [[2,-9,7][2,-1,2][6,5,-5]] [3,4,5] => [5,12,13] => [-7,24,25]
chain 2, fact 0 [[2,-9,7][6,6,-6][2,-2,3]] [3,4,5] => [5,12,13] => [-7,24,25]
chain 2, fact 0 [[2,-9,7][6,6,-6][6,5,-5]] [3,4,5] => [5,12,13] => [-7,24,25]
chain 8, fact 0 [[2,-3,3][6,-2,6][6,-3,7]] [3,4,5] => [9,40,41] => [21,220,221] => [45,1012,1013]
chain 8, fact 0 [[2,-1,1][2,2,2][2,1,3]] [3,4,5] => [7,24,25] => [15,112,113] => [31,480,481]
chain 8, fact 0 [[2,-1,2][1,-2,2][2,-2,3]] [3,4,5] => [12,5,13] => [45,28,53] => [168,95,193]
chain 8, fact 0 [[2,1,-1][-2,2,2][-2,1,3]] [3,4,5] => [5,12,13] => [9,40,41] => [17,144,145]
chain 2, fact 0 [[2,1,-1][-2,2,2][2,8,-5]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[2,1,-1][2,9,-6][-2,1,3]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[2,1,-1][2,9,-6][2,8,-5]] [3,4,5] => [5,12,13] => [9,40,41]
chain 8, fact 0 [[2,1,1][2,-2,2][2,-1,3]] [3,4,5] => [15,8,17] => [55,48,73] => [231,160,281]
chain 2, fact 0 [[2,1,1][2,-2,2][9,5,-6]] [3,4,5] => [15,8,17] => [55,48,73]
chain 2, fact 0 [[2,1,1][9,4,-7][2,-1,3]] [3,4,5] => [15,8,17] => [55,48,73]
chain 2, fact 0 [[2,1,1][9,4,-7][9,5,-6]] [3,4,5] => [15,8,17] => [55,48,73]
chain 8, fact 0 [[2,1,2][1,2,2][2,2,3]] [3,4,5] => [20,21,29] => [119,120,169] => [696,697,985]
chain 7, fact 0 [[2,3,3][6,2,6][6,3,7]] [3,4,5] => [33,56,65] => [429,700,821] => [5421,8900,10421]
chain 2, fact 0 [[2,3,9][6,2,-2][9,7,2]] [3,4,5] => [63,16,65] => [759,280,809]
chain 2, fact 0 [[2,9,-7][6,-6,6][7,1,0]] [3,4,5] => [7,24,25] => [55,48,73]
chain 2, fact 0 [[2,9,-6][0,-5,5][3,1,0]] [3,4,5] => [12,5,13] => [-9,40,41]
chain 2, fact 0 [[2,9,-6][9,2,-6][3,1,0]] [3,4,5] => [12,5,13] => [-9,40,41]
chain 2, fact 0 [[3,-6,6][-5,-3,7][2,-6,7]] [3,4,5] => [15,8,17] => [99,20,101]
chain 2, fact 0 [[3,-6,6][-5,-3,7][9,0,-2]] [3,4,5] => [15,8,17] => [99,20,101]
chain 2, fact 0 [[3,-6,6][-4,5,0][2,-6,7]] [3,4,5] => [15,8,17] => [99,-20,101]
chain 2, fact 0 [[3,-6,6][-4,5,0][9,0,-2]] [3,4,5] => [15,8,17] => [99,-20,101]
chain 8, fact 0 [[3,-6,6][2,3,-2][2,-6,7]] [3,4,5] => [15,8,17] => [99,20,101] => [783,56,785]
chain 2, fact 0 [[3,-6,6][2,3,-2][9,0,-2]] [3,4,5] => [15,8,17] => [99,20,101]
chain 8, fact 0 [[3,-2,2][6,3,6][6,2,7]] [3,4,5] => [11,60,61] => [35,612,613] => [107,5724,5725]
chain 8, fact 0 [[3,0,0][0,5,4][0,4,5]] [3,4,5] => [9,40,41] => [27,364,365] => [81,3280,3281]
chain 8, fact 0 [[3,2,-2][-6,3,6][-6,2,7]] [3,4,5] => [7,24,25] => [19,180,181] => [55,1512,1513]
chain 2, fact 0 [[3,4,-4][-8,4,4][-8,3,5]] [3,4,5] => [5,12,13] => [11,60,61]
chain 8, fact 0 [[3,6,6][-2,3,2][2,6,7]] [3,4,5] => [63,16,65] => [675,52,677] => [6399,160,6401]
chain 2, fact 0 [[3,7,-6][4,-2,4][6,3,-1]] [3,4,5] => [7,24,25] => [39,80,89]
chain 2, fact 0 [[3,7,-6][9,8,-7][6,3,-1]] [3,4,5] => [7,24,25] => [39,80,89]
chain 2, fact 0 [[4,-8,5][-8,4,4][-8,3,5]] [3,4,5] => [5,12,13] => [-11,60,61]
chain 8, fact 0 [[4,-7,8][1,-4,4][4,-8,9]] [3,4,5] => [24,7,25] => [247,96,265] => [2436,923,2605]
chain 2, fact 0 [[4,-5,3][0,6,0][0,5,1]] [3,4,5] => [7,24,25] => [-17,144,145]
chain 7, fact 0 [[4,-1,1][4,8,8][4,7,9]] [3,4,5] => [13,84,85] => [53,1404,1405] => [213,22684,22685]
chain 8, fact 0 [[4,-1,4][7,-4,8][8,-4,9]] [3,4,5] => [28,45,53] => [279,440,521] => [2760,4361,5161]
chain 7, fact 0 [[4,1,-1][-4,8,8][-4,7,9]] [3,4,5] => [11,60,61] => [43,924,925] => [171,14620,14621]
chain 8, fact 0 [[4,1,1][4,-8,8][4,-7,9]] [3,4,5] => [21,20,29] => [133,156,205] => [893,924,1285]
chain 7, fact 0 [[4,1,4][7,4,8][8,4,9]] [3,4,5] => [36,77,85] => [561,1240,1361] => [8928,19775,21697]
chain 8, fact 0 [[4,3,0][-3,4,0][0,0,5]] [3,4,5] => [24,7,25] => [117,-44,125] => [336,-527,625]
chain 2, fact 0 [[4,5,-4][-4,3,1][-5,-3,8]] [3,4,5] => [12,5,13] => [21,-20,29]
chain 2, fact 0 [[4,5,-4][-4,3,1][4,4,-3]] [3,4,5] => [12,5,13] => [21,-20,29]
chain 8, fact 0 [[4,7,-1][-8,4,4][-4,1,9]] [3,4,5] => [35,12,37] => [187,-84,205] => [-45,-1012,1013]
chain 2, fact 0 [[4,7,-1][-8,4,4][7,9,-4]] [3,4,5] => [35,12,37] => [187,-84,205]
chain 2, fact 0 [[4,7,-1][1,1,1][-4,1,9]] [3,4,5] => [35,12,37] => [187,84,205]
chain 2, fact 0 [[4,7,-1][1,1,1][7,9,-4]] [3,4,5] => [35,12,37] => [187,84,205]
chain 8, fact 0 [[4,7,1][8,-4,4][4,-1,9]] [3,4,5] => [45,28,53] => [429,460,629] => [5565,4108,6917]
chain 7, fact 0 [[4,7,8][1,4,4][4,8,9]] [3,4,5] => [80,39,89] => [1305,592,1433] => [20828,9405,22853]
chain 2, fact 0 [[5,-7,4][8,0,0][5,-5,6]] [3,4,5] => [7,24,25] => [-33,56,65]
chain 2, fact 0 [[5,-5,2][-2,2,2][-2,1,3]] [3,4,5] => [5,12,13] => [-9,40,41]
chain 2, fact 0 [[5,-5,2][-2,2,2][2,8,-5]] [3,4,5] => [5,12,13] => [-9,40,41]
chain 2, fact 0 [[5,-5,2][2,9,-6][-2,1,3]] [3,4,5] => [5,12,13] => [-9,40,41]
chain 2, fact 0 [[5,-5,2][2,9,-6][2,8,-5]] [3,4,5] => [5,12,13] => [-9,40,41]
chain 2, fact 0 [[5,-3,1][6,-2,1][5,-7,6]] [3,4,5] => [8,15,17] => [12,35,37]
chain 2, fact 0 [[5,-2,0][5,1,1][5,0,2]] [3,4,5] => [7,24,25] => [-13,84,85]
chain 2, fact 0 [[5,-2,1][2,1,-1][1,-5,6]] [3,4,5] => [12,5,13] => [63,16,65]
chain 2, fact 0 [[5,0,4][-7,2,5][4,0,5]] [3,4,5] => [35,12,37] => [323,-36,325]
chain 8, fact 0 [[5,0,4][0,3,0][4,0,5]] [3,4,5] => [35,12,37] => [323,36,325] => [2915,108,2917]
chain 2, fact 0 [[5,5,-6][2,-1,2][2,-2,3]] [3,4,5] => [5,12,13] => [7,24,25]
chain 2, fact 0 [[5,5,-6][2,-1,2][6,5,-5]] [3,4,5] => [5,12,13] => [7,24,25]
chain 2, fact 0 [[5,5,-6][6,6,-6][2,-2,3]] [3,4,5] => [5,12,13] => [7,24,25]
chain 2, fact 0 [[5,5,-6][6,6,-6][6,5,-5]] [3,4,5] => [5,12,13] => [7,24,25]
chain 2, fact 0 [[5,8,-7][0,-5,5][3,1,0]] [3,4,5] => [12,5,13] => [9,40,41]
chain 2, fact 0 [[5,8,-7][9,2,-6][3,1,0]] [3,4,5] => [12,5,13] => [9,40,41]
chain 2, fact 0 [[6,-7,3][6,-4,2][2,-7,7]] [3,4,5] => [5,12,13] => [-15,8,17]
chain 2, fact 0 [[6,-7,3][6,-4,2][6,0,-1]] [3,4,5] => [5,12,13] => [-15,8,17]
chain 8, fact 0 [[6,-3,3][2,6,-2][2,-3,7]] [3,4,5] => [21,20,29] => [153,104,185] => [1161,560,1289]
chain 2, fact 0 [[6,-2,-1][2,-1,2][2,-2,3]] [3,4,5] => [5,12,13] => [-7,24,25]
chain 2, fact 0 [[6,-2,-1][2,-1,2][6,5,-5]] [3,4,5] => [5,12,13] => [-7,24,25]
chain 2, fact 0 [[6,-2,-1][6,6,-6][2,-2,3]] [3,4,5] => [5,12,13] => [-7,24,25]
chain 2, fact 0 [[6,-2,-1][6,6,-6][6,5,-5]] [3,4,5] => [5,12,13] => [-7,24,25]
chain 2, fact 0 [[6,-2,1][1,-5,5][6,-4,3]] [3,4,5] => [15,8,17] => [91,60,109]
chain 2, fact 0 [[6,-2,1][8,1,-4][6,-4,3]] [3,4,5] => [15,8,17] => [91,60,109]
chain 2, fact 0 [[6,-2,6][-4,-6,9][4,-4,9]] [3,4,5] => [40,9,41] => [468,155,493]
chain 2, fact 0 [[6,-1,-1][0,5,4][0,4,5]] [3,4,5] => [9,40,41] => [-27,364,365]
chain 2, fact 0 [[6,-1,2][-6,5,1][6,-2,3]] [3,4,5] => [24,7,25] => [187,-84,205]
chain 2, fact 0 [[6,1,-3][9,-2,1][9,-3,2]] [3,4,5] => [7,24,25] => [-9,40,41]
chain 2, fact 0 [[6,3,-3][-9,0,7][-2,-3,7]] [3,4,5] => [15,8,17] => [63,-16,65]
chain 2, fact 0 [[6,3,-3][-9,0,7][5,3,-2]] [3,4,5] => [15,8,17] => [63,-16,65]
chain 2, fact 0 [[6,3,-3][-7,-4,9][-2,-3,7]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[6,3,-3][-7,-4,9][5,3,-2]] [3,4,5] => [15,8,17] => [63,16,65]
chain 8, fact 0 [[6,3,-3][-2,6,-2][-2,-3,7]] [3,4,5] => [15,8,17] => [63,-16,65] => [135,-352,377]
chain 2, fact 0 [[6,3,-3][-2,6,-2][5,3,-2]] [3,4,5] => [15,8,17] => [63,-16,65]
chain 2, fact 0 [[6,3,-3][0,2,0][-2,-3,7]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[6,3,-3][0,2,0][5,3,-2]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[6,3,-3][7,8,-9][-2,-3,7]] [3,4,5] => [15,8,17] => [63,16,65]
chain 2, fact 0 [[6,3,-3][7,8,-9][5,3,-2]] [3,4,5] => [15,8,17] => [63,16,65]
chain 8, fact 0 [[6,3,3][-2,6,2][2,3,7]] [3,4,5] => [45,28,53] => [513,184,545] => [5265,1168,5393]
chain 7, fact 0 [[6,3,6][3,-2,2][6,2,7]] [3,4,5] => [60,11,61] => [759,280,809] => [10248,3335,10777]
chain 2, fact 0 [[6,5,-6][9,-8,4][8,-8,5]] [3,4,5] => [8,15,17] => [21,20,29]
chain 2, fact 0 [[6,5,5][-5,4,3][5,5,6]] [3,4,5] => [63,16,65] => [783,-56,785]
chain 2, fact 0 [[6,6,-7][4,-7,8][4,-8,9]] [3,4,5] => [7,24,25] => [11,60,61]
chain 2, fact 0 [[6,6,-7][4,-7,8][9,2,-2]] [3,4,5] => [7,24,25] => [11,60,61]
chain 2, fact 0 [[6,6,-7][9,3,-3][4,-8,9]] [3,4,5] => [7,24,25] => [11,60,61]
chain 2, fact 0 [[6,6,-7][9,3,-3][9,2,-2]] [3,4,5] => [7,24,25] => [11,60,61]
chain 2, fact 0 [[6,8,-9][-2,2,2][-2,1,3]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[6,8,-9][-2,2,2][2,8,-5]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[6,8,-9][2,9,-6][-2,1,3]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[6,8,-9][2,9,-6][2,8,-5]] [3,4,5] => [5,12,13] => [9,40,41]
chain 2, fact 0 [[6,8,-7][-7,1,5][-2,2,3]] [3,4,5] => [15,8,17] => [35,-12,37]
chain 2, fact 0 [[6,8,-7][-7,1,5][5,8,-6]] [3,4,5] => [15,8,17] => [35,-12,37]
chain 2, fact 0 [[6,8,-7][-2,1,2][-2,2,3]] [3,4,5] => [15,8,17] => [35,12,37]
chain 2, fact 0 [[6,8,-7][-2,1,2][5,8,-6]] [3,4,5] => [15,8,17] => [35,12,37]
chain 2, fact 0 [[6,8,-7][0,7,-4][-2,2,3]] [3,4,5] => [15,8,17] => [35,-12,37]
chain 2, fact 0 [[6,8,-7][0,7,-4][5,8,-6]] [3,4,5] => [15,8,17] => [35,-12,37]
chain 2, fact 0 [[6,8,-7][5,7,-7][-2,2,3]] [3,4,5] => [15,8,17] => [35,12,37]
chain 2, fact 0 [[6,8,-7][5,7,-7][5,8,-6]] [3,4,5] => [15,8,17] => [35,12,37]
chain 2, fact 0 [[6,8,-3][-5,3,3][5,8,-2]] [3,4,5] => [35,12,37] => [195,-28,197]
chain 2, fact 0 [[6,8,-3][-2,2,2][5,8,-2]] [3,4,5] => [35,12,37] => [195,28,197]
chain 2, fact 0 [[7,-9,4][0,-7,8][0,-3,5]] [3,4,5] => [5,12,13] => [-21,20,29]
chain 2, fact 0 [[7,-9,4][0,-7,8][4,4,-3]] [3,4,5] => [5,12,13] => [-21,20,29]
chain 2, fact 0 [[7,-9,4][4,0,0][0,-3,5]] [3,4,5] => [5,12,13] => [-21,20,29]
chain 2, fact 0 [[7,-9,4][4,0,0][4,4,-3]] [3,4,5] => [5,12,13] => [-21,20,29]
chain 2, fact 0 [[7,-9,4][8,7,-8][0,-3,5]] [3,4,5] => [5,12,13] => [-21,20,29]
chain 2, fact 0 [[7,-9,4][8,7,-8][4,4,-3]] [3,4,5] => [5,12,13] => [-21,20,29]
chain 7, fact 0 [[7,-4,8][4,-1,4][8,-4,9]] [3,4,5] => [45,28,53] => [627,364,725] => [8733,5044,10085]
chain 2, fact 0 [[7,-2,-1][5,0,0][7,-1,0]] [3,4,5] => [8,15,17] => [9,40,41]
chain 2, fact 0 [[7,2,-4][6,-2,6][6,-3,7]] [3,4,5] => [9,40,41] => [-21,220,221]
chain 2, fact 0 [[7,3,-5][-1,7,-2][-2,2,3]] [3,4,5] => [8,15,17] => [16,63,65]
chain 6, fact 0 [[7,4,8][4,1,4][8,4,9]] [3,4,5] => [77,36,85] => [1363,684,1525] => [24477,12236,27365]
chain 2, fact 0 [[8,-1,-3][-8,4,4][-8,3,5]] [3,4,5] => [5,12,13] => [-11,60,61]
chain 7, fact 0 [[8,-1,4][-1,8,-4][4,-4,9]] [3,4,5] => [40,9,41] => [475,-132,493] => [5904,-3503,6865]
chain 7, fact 0 [[8,-1,7][4,4,4][8,1,9]] [3,4,5] => [55,48,73] => [903,704,1145] => [14535,11008,18233]
chain 2, fact 0 [[8,1,-4][-6,-3,9][-4,-4,9]] [3,4,5] => [8,15,17] => [11,60,61]
chain 2, fact 0 [[8,1,-4][-6,-3,9][3,7,-4]] [3,4,5] => [8,15,17] => [11,60,61]
chain 8, fact 0 [[8,1,-4][1,8,-4][-4,-4,9]] [3,4,5] => [8,15,17] => [11,60,61] => [-96,247,265]
chain 2, fact 0 [[8,1,-4][1,8,-4][3,7,-4]] [3,4,5] => [8,15,17] => [11,60,61]
chain 7, fact 0 [[8,1,4][1,8,4][4,4,9]] [3,4,5] => [48,55,73] => [731,780,1069] => [10904,11247,15665]
chain 7, fact 0 [[8,1,7][4,-4,4][8,-1,9]] [3,4,5] => [63,16,65] => [975,448,1073] => [15759,6400,17009]
chain 2, fact 0 [[8,9,-9][4,-6,4][3,-3,4]] [3,4,5] => [15,8,17] => [39,80,89]
chain 2, fact 0 [[9,-5,0][-7,0,9][-5,5,4]] [3,4,5] => [7,24,25] => [-57,176,185]
chain 2, fact 0 [[9,2,-6][-2,2,2][-2,1,3]] [3,4,5] => [5,12,13] => [-9,40,41]
chain 2, fact 0 [[9,2,-6][-2,2,2][2,8,-5]] [3,4,5] => [5,12,13] => [-9,40,41]
chain 2, fact 0 [[9,2,-6][2,9,-6][-2,1,3]] [3,4,5] => [5,12,13] => [-9,40,41]
chain 2, fact 0 [[9,2,-6][2,9,-6][2,8,-5]] [3,4,5] => [5,12,13] => [-9,40,41]
chain 2, fact 0 [[9,5,-8][0,6,0][0,5,1]] [3,4,5] => [7,24,25] => [-17,144,145]
chain 2, fact 0 [[9,7,-8][2,-2,2][2,-1,3]] [3,4,5] => [15,8,17] => [55,48,73]
chain 2, fact 0 [[9,7,-8][2,-2,2][9,5,-6]] [3,4,5] => [15,8,17] => [55,48,73]
chain 2, fact 0 [[9,7,-8][9,4,-7][2,-1,3]] [3,4,5] => [15,8,17] => [55,48,73]
chain 2, fact 0 [[9,7,-8][9,4,-7][9,5,-6]] [3,4,5] => [15,8,17] => [55,48,73]
elapsed time: 355 s
|
55c5b40af79613775b2923ed20c9e4ae39600c3b | 449d555969bfd7befe906877abab098c6e63a0e8 | /49/CH8/EX8.4/ex4.sce | eb0d4561e4f57300109db3974c2e99beed45779b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,041 | sce | ex4.sce | //CHAPTER 8 _ TEMPERATURE MEASUREMENT
//Caption : THERMISTOR
// Example 4 // Page 521
To= 293 //('Enter the temperature in K=:')
Ro=1000 //('Entering the corresponding resistance in ohm=:')
B=3450 // (' Entering the val)ue of constant=:')
Rt=2500 //(' Entering the resistance at which temperature has to be calculated=:')
T=1/((1/To)+(1/B)*log(Rt/Ro));
disp("Temperature is given by:")
disp("T=1/((1/To)+(1/B)*log(Rt/Ro));")
printf('The temperature corresponding to resistance of %d ohm is %1.3f K \n ',Rt,T)
Wrt=5 //('Entering the error in Rt resistance measurement=:' )
Wro=2 //('Entering the error in Ro temperature measurement=:')
// Let dT/dRt be represented by DRt and dT/dRo by DRo
DRt=-T^2/(B*Rt) ;
DRo=-T^2/(B*Ro);
disp ("Error in temperature measurement is given by:")
disp("Wt=sqrt((DRt*Wrt)^2+(DRo*Wro)^2);")
Wt=sqrt((DRt*Wrt)^2+(DRo*Wro)^2);
printf('Error in the required temperature measurement is %1.4f K \n',Wt)
printf('So the required temperature is %d+_%1.4f K \n',T,Wt)
|
316fe0c21c78a7dddc82d5cc0833432ec1f18446 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH5/EX5.11/5_11.sci | fd4f725e75766482a4ac6b08ca0cdb04e590aca9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 90 | sci | 5_11.sci | // Calculating the possion's ratio
clc;
Gf=4.2;
v=(Gf-1)/2;
disp(v,'Possion s ratio=') |
5ae6ba2687314d5217471df9d650e6db8e2530b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH1/EX1.8/ex1_8.sce | a04d0972b28f5d951388259c7140b6c82d9c3cbf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 67 | sce | ex1_8.sce | clc;
disp(1440*0.621,"Distance in miles"); //displaying result |
0c54683a1189fd4d1af9891f33c5f3bf14ecd52e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1682/CH2/EX2.1/Exa2_1.sce | 4e40de48cab1294982cad9d3e53eb201162b86e7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,144 | sce | Exa2_1.sce | //Exa2.1
clc;
clear;
close;
//Part a : Cost of using aluminium metal for the jet engine part
//given data :
w1=1.2;//in Kg
//let c1=cost of making aluminium casting
//let c2=cost of machining aluminium casting per unit
//let Tc=Total cost of jet engine part made of aluminium per unit
c1=80;//in Rs/Kg
c2=150;//in Rs
Tc1=c1*w1+c2;//in Rs
disp(Tc1,"Total cost of jet engine part made of aluminium per unit in Rs : ");
//Part b : Cost of jet engine part made of steel/unit
//given data :
w2=1.35;//in Kg
//let c1=cost of making steel casting
//let c2=cost of machining steel casting per unit
//let c3=penalty of excess weight of steel casting
//let Tc=Total cost of jet engine part made of steel per unit
c1=35;//in Rs/Kg
c2=170;//in Rs
c3=1300;//in Rs/Kg
Tc2=c1*w2+c2+c3*(w2-w1);//in Rs
disp(Tc2,"Total cost of jet engine part made of steel per unit in Rs : ");
disp(Tc2-Tc1,"DECISION : The total cost/unit of a jet engine part made of aluminium is less than that for an engine made of steel. Hence, aluminium is suggested for making jet engine part. The economic advantage of aluminium over steel per unit in Rs : ") |
34f6041983ef5f14bd88013809add414ae86dd8f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1244/CH7/EX7.7/Example77.sce | 494b788e8ce8f19382c43aed4cef9a21c7d89fbb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 908 | sce | Example77.sce |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clc;
disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 7 Example # 7.7 ")
//Temperature of jet in degree C
T = 20;
//Thermal conductivity in W/mK
k = 0.597;
//Dynamic viscosity in Ns/m2
mu = 0.000993;
//Prandtl number
Pr = 7;
//Mass flow rate in kg/s
m = 0.008;
//Diameter of jet in m
d = 6/1000;
//Total heat flux in W/m2
q = 70000;
//Reynolds number
Re = (4*m)/((%pi*d)*mu);
disp("For r=3mm")
//From Eq. (7.45)
//Heat transfer coefficient in W/m2K
h = (63*k)/d;
disp("Surface temperature at r=3mm in degree C is")
//Surface temperature in degree C
Ts = T+q/h
disp("For r=12mm")
//From Eq. (7.48)
//Heat transfer coefficient in W/m2K
h = (35.3*k)/d;
disp("Surface temperature at r=12mm in degree C is")
//Surface temperature in degree C
Ts = T+q/h
|
29b8c3520db1b9bd5c1202cf92a57df95254d34b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH14/EX14.2/Ex14_2.sce | b72c3c283907a3a84b59da6c51db83b538b7c226 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 651 | sce | Ex14_2.sce | //Example 14-2
clc;clear;
// Properties
rho=62.30;//The density of water at 70°F in lbm/ft^3
v=370;// gal/min
g=32.2;// ft/s^2
H_1=24;// ft
H_2=72.0;// ft
n_p2=0.765;
n_p1=0.70;//Efficiency of the pump
// Calculation
bhp_1=((rho*g*v*H_1)/n_p1)*((0.1337)/(32.2*60*550));
printf('Required bhp for the 8.25-in impeller option:bhp=%0.2f hp\n',bhp_1);
bhp_2=((rho*g*v*H_2)/n_p2)*((0.1337)/(32.2*60*550));
printf('Required bhp for the 12.75-in impeller option:bhp=%0.2f hp\n',bhp_2);
printf('Clearly, the smaller-diameter impeller option is the better choice in spite of its lower efficiency, because it uses less than half the power.');
|
a554e75f00e1716442eb5265d1541719f295a089 | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH4/EX4.1/Example4_1.sce | e97db7a1e48f39992e48fcc1210a0a339143d506 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | Example4_1.sce | //Example 4.1
clear;
clc;
fc=1*10^3;
fs=2*10^3;
AmaxdB=1;
AmindB=40;
e=((10^(AmaxdB/20))^(2)-1)^(1/2);
n1=((10^(AmindB/10))-1)/(e^2);
n=log(n1)/(2*log(fs/fc))+0.4;//0.4 is added in order to obtain a integer
printf("n=%.d",n); |
b0e7f6a1afaf2dbf744d0d8cc1b47fdc92169db1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1241/CH2/EX2.37/exa2_37.sce | aa04e69b30889f9fedbe3cc2890b4d507bdec021 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 447 | sce | exa2_37.sce | //Example 2-37//
// negative decimal representation of 10011011//
clc
//clears the window//
clear
//clears all existing variables//
b=bin2dec('10011011')
x=bitcmp(b,8)
//complement of the decimal number 17(8 bit representation)//
y=1
z=x+y
//1 is added to the complement//
a=dec2bin(z)
//binary conversion of the decimal number//
z=z*(-1)
disp(' the negative value that 10011011 represents is: ')
disp(z)
//result is displayed//
|
7ddef9af1167a1fe7f02fddce513d8abacdd9462 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH16/EX16.10/ex16_10.sce | a2c8eb4413157d82af9bac90012860d148ad756c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 689 | sce | ex16_10.sce | clc;
clear all;
e = 1.6e-19; // Charge of an electron
m = 9.11e-31; // Mass of an electron in Kg
r = 1.6e-8 ; // resistivity of silver in (ohm.meter)
at = 107.9e-3; // Atomic weight of copper in gm
d = 10.5e3; // Density of silver in Kg per cubic meter
N = 6.023e23; // Avagadros number
c = 3e8 ;// Velocity of light in air
fe= 5.5*e // Fermi energy of the silver piece
E = 100;// Electric field
sigma = 1/r; // Conductivity
n = (N*d)/at;
tr = (sigma*m)/(n*e^2);// Relaxation time
lambda = c*tr; // Mean free path
vd = (sigma*E)/(n*e);// Drift velocity
disp('s',tr,'Relaxation time is')
disp('m',lambda,'Mean free path is')
disp('m/s',vd,'Drift velocity of electrons')
|
6017390ad9f3dc5af56b8233b945130d1cd770eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /494/CH9/EX9.1/9_1.sce | 6e4965138285a57db13279bd6807a3201bad4536 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 377 | sce | 9_1.sce | //All the quantities are expressed in SI units
M = 2; //mach number
h = 16000; //altitude of the plane
//the mach angle can be calculated from eq.(9.1) as
mue = asin(1/M); //mach angle
d = h/tan(mue);
printf("\nRESULTS\n---------\nThe plane is ahead of the bystander by a distance of:\n d = %2.1f km\n",d/1000) |
11c74f187f069670fe6a9666c245dde504197607 | 9ce4292954000fd66bcdbd0797a280c306308d08 | /mooc/nand2tetris/projects/02/ALU.tst | 9e665b05e97135a91d3bd08955297763a1e5ae1e | [
"MIT"
] | permissive | JiniousChoi/encyclopedia-in-code | 0c786f2405bfc1d33291715d9574cae625ae45be | 77bc551a03a2a3e3808e50016ece14adb5cfbd96 | refs/heads/master | 2021-06-27T07:50:10.789732 | 2020-05-29T12:50:46 | 2020-05-29T12:50:46 | 137,426,553 | 2 | 0 | MIT | 2020-10-13T08:56:12 | 2018-06-15T01:29:31 | Python | UTF-8 | Scilab | false | false | 4,146 | tst | ALU.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/02/ALU.tst
load ALU.hdl,
output-file ALU.out,
compare-to ALU.cmp,
output-list x%B1.16.1 y%B1.16.1 zx%B1.1.1 nx%B1.1.1 zy%B1.1.1
ny%B1.1.1 f%B1.1.1 no%B1.1.1 out%B1.16.1 zr%B1.1.1
ng%B1.1.1;
set x %B0000000000000000, // x = 0
set y %B1111111111111111; // y = -1
// Compute 0
set zx 1,
set nx 0,
set zy 1,
set ny 0,
set f 1,
set no 0,
eval,
output;
// Compute 1
set zx 1,
set nx 1,
set zy 1,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute -1
set zx 1,
set nx 1,
set zy 1,
set ny 0,
set f 1,
set no 0,
eval,
output;
// Compute x
set zx 0,
set nx 0,
set zy 1,
set ny 1,
set f 0,
set no 0,
eval,
output;
// Compute y
set zx 1,
set nx 1,
set zy 0,
set ny 0,
set f 0,
set no 0,
eval,
output;
// Compute !x
set zx 0,
set nx 0,
set zy 1,
set ny 1,
set f 0,
set no 1,
eval,
output;
// Compute !y
set zx 1,
set nx 1,
set zy 0,
set ny 0,
set f 0,
set no 1,
eval,
output;
// Compute -x
set zx 0,
set nx 0,
set zy 1,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute -y
set zx 1,
set nx 1,
set zy 0,
set ny 0,
set f 1,
set no 1,
eval,
output;
// Compute x + 1
set zx 0,
set nx 1,
set zy 1,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute y + 1
set zx 1,
set nx 1,
set zy 0,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute x - 1
set zx 0,
set nx 0,
set zy 1,
set ny 1,
set f 1,
set no 0,
eval,
output;
// Compute y - 1
set zx 1,
set nx 1,
set zy 0,
set ny 0,
set f 1,
set no 0,
eval,
output;
// Compute x + y
set zx 0,
set nx 0,
set zy 0,
set ny 0,
set f 1,
set no 0,
eval,
output;
// Compute x - y
set zx 0,
set nx 1,
set zy 0,
set ny 0,
set f 1,
set no 1,
eval,
output;
// Compute y - x
set zx 0,
set nx 0,
set zy 0,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute x & y
set zx 0,
set nx 0,
set zy 0,
set ny 0,
set f 0,
set no 0,
eval,
output;
// Compute x | y
set zx 0,
set nx 1,
set zy 0,
set ny 1,
set f 0,
set no 1,
eval,
output;
set x %B000000000010001, // x = 17
set y %B000000000000011; // y = 3
// Compute 0
set zx 1,
set nx 0,
set zy 1,
set ny 0,
set f 1,
set no 0,
eval,
output;
// Compute 1
set zx 1,
set nx 1,
set zy 1,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute -1
set zx 1,
set nx 1,
set zy 1,
set ny 0,
set f 1,
set no 0,
eval,
output;
// Compute x
set zx 0,
set nx 0,
set zy 1,
set ny 1,
set f 0,
set no 0,
eval,
output;
// Compute y
set zx 1,
set nx 1,
set zy 0,
set ny 0,
set f 0,
set no 0,
eval,
output;
// Compute !x
set zx 0,
set nx 0,
set zy 1,
set ny 1,
set f 0,
set no 1,
eval,
output;
// Compute !y
set zx 1,
set nx 1,
set zy 0,
set ny 0,
set f 0,
set no 1,
eval,
output;
// Compute -x
set zx 0,
set nx 0,
set zy 1,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute -y
set zx 1,
set nx 1,
set zy 0,
set ny 0,
set f 1,
set no 1,
eval,
output;
// Compute x + 1
set zx 0,
set nx 1,
set zy 1,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute y + 1
set zx 1,
set nx 1,
set zy 0,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute x - 1
set zx 0,
set nx 0,
set zy 1,
set ny 1,
set f 1,
set no 0,
eval,
output;
// Compute y - 1
set zx 1,
set nx 1,
set zy 0,
set ny 0,
set f 1,
set no 0,
eval,
output;
// Compute x + y
set zx 0,
set nx 0,
set zy 0,
set ny 0,
set f 1,
set no 0,
eval,
output;
// Compute x - y
set zx 0,
set nx 1,
set zy 0,
set ny 0,
set f 1,
set no 1,
eval,
output;
// Compute y - x
set zx 0,
set nx 0,
set zy 0,
set ny 1,
set f 1,
set no 1,
eval,
output;
// Compute x & y
set zx 0,
set nx 0,
set zy 0,
set ny 0,
set f 0,
set no 0,
eval,
output;
// Compute x | y
set zx 0,
set nx 1,
set zy 0,
set ny 1,
set f 0,
set no 1,
eval,
output;
|
73f411ccb7d35c2f5fd6e673075bdd05f9afb3e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH5/EX5.7/Ex5_7.sce | 7dfbcd95b4e933f668ad4cb1576fd5752ce24b6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 429 | sce | Ex5_7.sce | clc
a = 100000 // Ej(p/f,e%,j) in Rs
n = 5 // life in years
e = 20 // M.A.R.R.
e = e/100 // M.A.R.R.
i = e
A = 32000 // savings in Rs
s = 20000 // salvage value in Rs
b = ((A*(((i+1)^n)-1)/i)+s)/a // (F/p,I,5)
i2 = (b)^(1/n)-1 // internal rate of return
printf("\n ERR = %0.4f\n Internal rate of return = %0.2f percent" , b , i2*100)
disp("Since Internal rate of return is > M.A.R.R , therefore project is feasible")
|
da1e915c5ff984c37b3578e2e177e2d7efe7e81a | 2f3e4d3b6b9fa6ff191b26f13fe8af8fd269d4f3 | /Gsoundrating_instructions.sce | f36d5244d535071981e4d332f65d343ea3ab71a8 | [] | no_license | npytabitha/German_rating---Copy | 927fa1aef1659b0acaae234aac056bf73cba2985 | 1cf99f9a35e6cc0f38b812070b2e128cc238b5ee | refs/heads/master | 2020-12-02T17:29:45.850569 | 2015-09-23T16:42:15 | 2015-09-23T16:42:15 | 42,940,457 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,066 | sce | Gsoundrating_instructions.sce | scenario = "One-Back"; # This name is recorded in the log file
scenario_type = trials;
response_matching = simple_matching;
no_logfile = true;
active_buttons = 3;
button_codes = 1, 2, 3; # These values will be used to code participant responses
default_font_size = 56;
default_font = "Arial";
default_background_color = 0,0,0; #Black#
default_text_color = 255,255,255; #White#
default_text_align = align_left;
begin;
#Instructions at the beginning of experiment
trial{
trial_duration=forever;
trial_type=specific_response;
terminator_button = 3;
picture{
text{font_size = 25; caption = "Im folgenden werden Dir Klaenge presentiert und Du sollst jeden Klang hinsichtlich seiner Eigenschaften bewerten:
1) Menschlichkeit: War der Klang von einer menschlichen Stimme?
2) Emotion: Drueckt der Klang Ueberraschung oder Neutralitaet aus?
3) Erregung: War der Klang erregt oder ruhig?
Bitte druecke eine Taste um zu beginnen."; max_text_width = 1000; max_text_height = 500;
};
x = 0; y = 0;
};
time = 0;
}instructions_pt1;
begin_pcl;
instructions_pt1.present(); |
800bcc87d24c3a9a4e4e755ecf71ee457b463c3b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3830/CH3/EX3.2/Ex3_2.sce | a16d30ee1015f9c2dc61364f71ad4bee8a1daf57 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 400 | sce | Ex3_2.sce | // Exa 3.2
clc;
clear;
// Given
Noise = -90; // Minimum detectable signal (dbm)
Ip = 300 ; // power level of third-order product(dbm)
// Solution
printf(' The expression for the dynamic range of the spectrum analyser = 2/3*(Ip-MDS) \n So, by calculations :-\n');
DR = 2/3*(Ip-Noise);
printf(' Dynamic range %.1f dB \n',DR);
// The answer provided in the textbook is wrong
|
5def196e9b82602f70609a7bd4029fdf0db424f3 | 04bf9c17fef56216adb24f0222355e251d14698a | /wangaudiofinal/testperceptif2.sce | 667adcc7fdb5f27ce02eb3d8041abc28c42565c1 | [] | no_license | xiaoouwang/psycho | 0fb275b23b39e1a287cd20366abaef0c9d8ceb71 | 990949699f0649f1cc937ec44737483ebd8a6824 | refs/heads/master | 2023-05-05T22:47:59.399140 | 2021-04-30T15:37:12 | 2021-04-30T15:37:12 | 363,183,984 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,535 | sce | testperceptif2.sce | scenario = "post-test perceptif XP";
active_buttons = 1;
button_codes = 1;
default_font = "Arial Unicode MS";
default_font_size = 33;
begin;
picture {
text {
caption = "训练结束!\n\n希望本次练习给你带来了帮助,如果你有朋友感兴趣的话请帮忙引荐!";
font_size = 40;
};
x = 0; y = 0;
} picperception;
trial{
picture {
text { caption = "现在我们将重新观察你归类元音的方式"; font_size=38;};
x = 0; y = 0;
};
duration = 4000;
picture {
text { caption = "在接下来的练习中,你可能会听到单独一个元音,比如 /o/ /è/\n\n也可能是一段包含此元音的语音,如 /apa/ /iki/"; font_size=38;};
x = 0; y = 0;
};
time=4000;
duration = 7000;
picture {
text { caption = "当你听到这些语音后,用鼠标在屏幕上选择你听到的元音"; font_size=38;};
x = 0; y = 0;
};
time=11000;
duration = 7000;
picture {
text { caption = "按回车开始练习"; font_size=38;};
x = 0; y = 0;
};
time=18000;
}trialstart;
trial{
stimulus_event {
picture {
text { caption = " "; font_size=60;};
x = 0; y = 0;
};
duration = 1;
code="1";
};
}result1;
trial{
stimulus_event {
picture {
text { caption = " "; font_size=60;};
x = 0; y = 0;
};
duration = 1;
code="2";
};
}result2;
trial{
stimulus_event {
picture {
text { caption = " "; font_size=60;};
x = 0; y = 0;
};
duration = 1;
code="3";
};
}result3;
trial{
stimulus_event {
picture {
text { caption = " "; font_size=60;};
x = 0; y = 0;
};
duration = 1;
code="4";
};
}result4;
trial{
stimulus_event {
picture {
text { caption = " "; font_size=60;};
x = 0; y = 0;
};
duration = 1;
code="5";
};
}result5;
trial{
stimulus_event {
picture {
text { caption = " "; font_size=60;};
x = 0; y = 0;
};
duration = 1;
code="6";
};
}result6;
trial{
stimulus_event {
picture {
text { caption = " "; font_size=60;};
x = 0; y = 0;
};
duration = 1;
code="miss";
};
}resultmiss;
text { caption = "+"; font_size = 10; background_color=255,0,0;}souris;
picture {
text souris;
x = 0; y = 0;
on_top = true;
text { caption = "请选择你听到的元音";
font_size = 45;
};
x = 0; y = 270;
text {
caption = "/o/ (peau)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
}texto;
x = 150; y = 130;
text {
caption = "/O/ (porc)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
}textO;
x = -150; y = 130;
text {
caption = "/è/ (pêche)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
}textE;
x = -150; y = -220;
text {
caption = " /é/ (fée) ";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
}texte;
x = 150; y = -220;
text {
caption = " /eu/ (peu)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
}texteu;
x = 150; y = -50;
text {
caption = "/oe/ (peur)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
}textoe;
x = -150; y = -50;
} pic;
trial{
picture {
text { caption = "+"; font_size = 10; background_color=255,0,0;};
x = 0; y = 0;
text { caption = "请听语音";
font_size = 45;
};
x = 0; y = 270;
text {
caption = "/o/ (peau)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
};
x = 150; y = 130;
text {
caption = "/O/ (porc)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
};
x = -150; y = 130;
text {
caption = "/è/ (pêche)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
};
x = -150; y = -220;
text {
caption = " /é/ (fée) ";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
};
x = 150; y = -220;
text {
caption = " /eu/ (peu)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
};
x = 150; y = -50;
text {
caption = "/oe/ (peur)";
font_size = 28;
font_color = 255,255,255;
background_color = 0,155,0;
};
x = -150; y = -50;
}selectionpicture;
sound {wavefile { filename = "perception\\Sans_titre.wav"; };
}trial_pause1;
time=1500;
stimulus_event {
nothing {};
code = "stop";
} stop;
} main_trial;
sound {wavefile { filename = "perception\\item_0318_tongue.wav"; }; description = "1";}s5;
sound {wavefile { filename = "perception\\item_0191_tongue.wav"; }; description = "1";}s6;
sound {wavefile { filename = "perception\\item_0192_tongue.wav"; }; description = "1";}s7;
sound {wavefile { filename = "perception\\item_0195_tongue.wav"; }; description = "1";}s8;
sound {wavefile { filename = "perception\\item_0207_tongue.wav"; }; description = "1";}s21;
sound {wavefile { filename = "perception\\item_0006_tongue.wav"; }; description = "2";}s25;
sound {wavefile { filename = "perception\\item_0151_tongue.wav"; }; description = "2";}s26;
sound {wavefile { filename = "perception\\item_0152_tongue.wav"; }; description = "2";}s27;
sound {wavefile { filename = "perception\\item_0155_tongue.wav"; }; description = "2";}s28;
sound {wavefile { filename = "perception\\item_0167_tongue.wav"; }; description = "2";}s41;
sound {wavefile { filename = "perception\\item_0017_tongue.wav"; }; description = "3";}s45;
sound {wavefile { filename = "perception\\item_0211_tongue.wav"; }; description = "3";}s46;
sound {wavefile { filename = "perception\\item_0212_tongue.wav"; }; description = "3";}s47;
sound {wavefile { filename = "perception\\item_0215_tongue.wav"; }; description = "3";}s48;
sound {wavefile { filename = "perception\\item_0226_tongue.wav"; }; description = "3";}s61;
sound {wavefile { filename = "perception\\item_0007_tongue.wav"; }; description = "4";}s65;
sound {wavefile { filename = "perception\\item_0463_tongue.wav"; }; description = "4";}s66;
sound {wavefile { filename = "perception\\item_0464_tongue.wav"; }; description = "4";}s67;
sound {wavefile { filename = "perception\\item_0467_tongue.wav"; }; description = "4";}s68;
sound {wavefile { filename = "perception\\item_0478_tongue.wav"; }; description = "4";}s81;
sound {wavefile { filename = "perception\\item_0002_tongue.wav"; }; description = "6";}s85;
sound {wavefile { filename = "perception\\item_0066_tongue.wav"; }; description = "6";}s86;
sound {wavefile { filename = "perception\\item_0067_tongue.wav"; }; description = "6";}s87;
sound {wavefile { filename = "perception\\item_0070_tongue.wav"; }; description = "6";}s88;
sound {wavefile { filename = "perception\\item_0081_tongue.wav"; }; description = "6";}s101;
sound {wavefile { filename = "perception\\item_0001_tongue.wav"; }; description = "5";}s105;
sound {wavefile { filename = "perception\\item_0047_tongue.wav"; }; description = "5";}s106;
sound {wavefile { filename = "perception\\item_0048_tongue.wav"; }; description = "5";}s107;
sound {wavefile { filename = "perception\\item_0051_tongue.wav"; }; description = "5";}s108;
sound {wavefile { filename = "perception\\item_0062_tongue.wav"; }; description = "5";}s121;
array {
sound s21; sound s41; sound s61; sound s81; sound s101; sound s121;
sound s5; sound s7; sound s8; sound s25; sound s27; sound s28; sound s45; sound s47; sound s48; sound s65; sound s67; sound s68; sound s85; sound s87; sound s88; sound s105; sound s107; sound s108;
} sounds;
begin_pcl;
trialstart.present();
system_keyboard.get_input();
sounds.shuffle();
mouse mse = response_manager.get_mouse( 1 );
int max_x = display_device.width() / 2;
int min_x = -max_x;
int max_y = display_device.height() / 2;
int min_y = -max_y;
mse.set_min_max( 1, min_x, max_x );
mse.set_min_max( 2, min_y, max_y );
mse.set_restricted( 1, true );
mse.set_restricted( 2, true );
loop
int i=1
until
i> sounds.count()
begin
stop.set_event_code(sounds[i].description());
sounds[i].get_wavefile().load();
stop.set_stimulus (sounds[i]);
main_trial.present();
sounds[i].get_wavefile().unload();
mse.set_xy( 0, 0 );
#sub
sub mouseselection begin
loop
int countfortext = response_manager.total_response_count( 1 )
until
response_manager.total_response_count( 1 ) > countfortext
begin
mse.poll();
pic.set_part_x( 1, mse.x() );
pic.set_part_y( 1, mse.y() );
pic.present();
if (mse.x()>85 && mse.y()>110 && mse.y()<150&& mse.x()<215) then
texto.set_background_color(255,0,0);
texto.redraw();
elseif (mse.x()>-215 && mse.y()>110 && mse.y()<150&& mse.x()<-85) then
textO.set_background_color(255,0,0);
textO.redraw();
elseif (mse.x()>-215 && mse.y()>-240 && mse.y()<-200&& mse.x()<-85) then
textE.set_background_color(255,0,0);
textE.redraw();
elseif (mse.x()>85 && mse.y()>-240 && mse.y()<-200&& mse.x()<215) then
texte.set_background_color(255,0,0);
texte.redraw();
elseif (mse.x()>85 && mse.y()>-70 && mse.y()<-30&& mse.x()<215) then
texteu.set_background_color(255,0,0);
texteu.redraw();
elseif (mse.x()>-215 && mse.y()>-70 && mse.y()<-30&& mse.x()<-85) then
textoe.set_background_color(255,0,0);
textoe.redraw();
else
texto.set_background_color(0,155,0);
textO.set_background_color(0,155,0);
textE.set_background_color(0,155,0);
texte.set_background_color(0,155,0);
texteu.set_background_color(0,155,0);
textoe.set_background_color(0,155,0);
textoe.redraw();
texteu.redraw();
texte.redraw();
texte.redraw();
textE.redraw();
textO.redraw();
texto.redraw();
end;
end;
if (mse.x()>85 && mse.y()>110 && mse.y()<150&& mse.x()<215) then
result2.present();
elseif (mse.x()>-215 && mse.y()>110 && mse.y()<150&& mse.x()<-85) then
result1.present();
elseif (mse.x()>-215 && mse.y()>-240 && mse.y()<-200&& mse.x()<-85) then
result5.present();
elseif (mse.x()>85 && mse.y()>-240 && mse.y()<-200&& mse.x()<215) then
result6.present();
elseif (mse.x()>85 && mse.y()>-70 && mse.y()<-30&& mse.x()<215) then
result4.present();
elseif (mse.x()>-215 && mse.y()>-70 && mse.y()<-30&& mse.x()<-85) then
result3.present();
else
mouseselection();
end;
end;
#sub
mouseselection();
i = i+1
end;
picperception.present();
system_keyboard.get_input(); |
df81279511e58473c09bbd8f4acc6698debe2964 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/CH10/EX10.8/example_10_8.sce | bc7464bb94df8cb249072c29106e29511e230cce | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 420 | sce | example_10_8.sce | //Scilab Code for Example 10.8 of Signals and systems by
//P.Ramakrishna Rao
//Auto Correlation
clear;
clc;
function [y]=u(t)
if t>=0
y=1
else y=0
end
endfunction
k=1;
a=0.8;
for n=-30:30;
x(k)=a^(n)*u(n);
k=k+1;
end
length(x)
//computation of auto correlation sequence;
r = xcorr(x);
n=-60:60;
a=gca();
a.x_location="origin";
a.y_location="origin";
plot2d3(n,r,-4);
title('rxx_auto-correlation'); |
012dd0988896b0cf4969c2a51dc0ed4060111456 | 0e1b45c07f0938ba9c8a003d6ae1cf2d8315efdb | /acmp.ru/500, Agent/test-02.tst | 11fd50e22c06966796bde1a0e017033764ec0d2a | [] | no_license | Kot-Angens/acm | c85d8582c3e84f218415321743864b9680e01f2e | 05472eaa0fff7abb6679826085da5e0c990df4cb | refs/heads/master | 2021-01-24T22:36:05.159612 | 2012-10-02T13:51:56 | 2012-10-02T13:51:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 66 | tst | test-02.tst | 5
5005 1 5004 2 5003 3 5002 4 5001 5
~~~~~~~~~~~~~~~~~~~~~~~~~~
7
|
53eaba3f52b8e1f568231e2162f912c7d3c4c5ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH8/EX8.6/exa_8_6.sce | 477b6faf1ae3e8daaa1c1c1df3054197818462b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | exa_8_6.sce | // Exa 8.6
clc;
clear;
close;
// Given data
R_E1= 5.6;// in kohm
C1= 0.2;// in miu F
V_B1= 6.3;// in volt
V_BE= 0.7;// in volt
TL= 2.5;// trigger level for the Schmitt trigger (UTP,LTP) in volt
del_V1= 2*TL;// in volt
I_C1= (V_B1-V_BE)/R_E1;// in mA
disp(I_C1,"Charging current in mA");
toh= del_V1*C1/I_C1;// in ms
disp(toh,"Time period in ms")
|
44927ded3f9ab4c624394fafb472c6bbb7ada99d | b0aff14da16e18ea29381d0bd02eede1aafc8df1 | /mtlbSci/macros/moc_size_equal.sci | c87b1849be5cdf21826406e9f20d026adbafddc2 | [] | no_license | josuemoraisgh/mtlbSci | 5d762671876bced45960a774f7192b41124a13ed | 5c813ed940cccf774ccd52c9a69f88ba39f22deb | refs/heads/main | 2023-07-15T23:47:11.843101 | 2021-08-26T17:52:57 | 2021-08-26T17:52:57 | 385,216,432 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 374 | sci | moc_size_equal.sci | function isEqual=moc_size_equal(A,B)
// checks if A and B have the same size
// Calling Sequence
// isEqual=moc_size_equal(A,B)
// Parameters
// isEqual: A and B have the same size
// A:vector or matrix
// B:vector or matrix
// Description
// moc_size_equal checks if A and B have the same size
//
// Authors
// H. Nahrstaedt - 2014
isEqual=size(A)==size(B);
endfunction
|
b9cd30460bc813042f14fb0f0effbb5938e7e959 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/util/G_make.sci | 4b391981e9c304ffdbda4d0dc5ed88b711420ae6 | [
"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 | 584 | sci | G_make.sci | function [res]=G_make(files,objects_or_dll)
// Copyright INRIA
// call make for target files or objects depending
// on OS and compilers
if getenv('WIN32','NO')=='OK' then
if typeof(objects_or_dll)<>'string' then error('G_addinter: objects must be a string');
return;
end
if getenv('COMPILER','NO')=='VC++' then
// scilab was build with VC++
host('nmake /f Makefile.mak '+objects_or_dll);
else
// Scilab was built with gcwin32
host('make '+objects_or_dll);
end
res=[objects_or_dll];
else
host('make '+ strcat(files,' '));
res=files ;
end
|
72eaeec29dd58469da6965b949f5415af0c45c57 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2207/CH6/EX6.6.9/ex_6_6_9.sce | 2e66d634078ba010af5453d766598b189cfc6252 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,263 | sce | ex_6_6_9.sce | //Example 6.6.9: load current is continuous or not,Average output current , maximum and minimum steady state output current and RMS values of first and second harmonics of the load current
clc;
clear;
close;
//given data :
format('v',6)
V=220;//in volts
La=5;// in mH
Eb=24;//in volts
Ra=1;// in ohm
T=2;//in m-sec
D=0.6/2;
D_dash=(La/(T*Ra))*log(1-((Eb/V)*(1-exp((T*Ra)/La))));
disp("part (c)")
disp("As D = "+string(D)+"% is greater then D_dash = "+string(D_dash)+"% so load current is continous")
disp("part (d)")
Io=((D*V)-Eb)/Ra;
disp(Io,"Average output current,Io(A) = ")
I_max=(V/Ra)*((1-exp(-(D*T*Ra)/La))/(1-exp(-(T*Ra)/La)))-(Eb/Ra);
disp(I_max,"Maximum steady state putput current,I_max(A) = ")
I_min=(V/Ra)*((1-exp((D*T*Ra)/La))/(1-exp((T*Ra)/La)))-(Eb/Ra);
disp(round(I_min),"Minimum steady state output current,I_min(A) = ")
disp("part (e)")
C1_rms=((2*V)/(%pi*sqrt(2)))*sin(%pi*D);// in volts
C2_rms=((2*V)/(2*%pi*sqrt(2)))*sin(2*%pi*D);// in volts
Z1=((Ra^2+(2*%pi*La*10^-3*(1/(T*10^-3)))^2)^(1/2));//
Z2=((Ra^2+(2*2*%pi*La*10^-3*(1/(T*10^-3)))^2)^(1/2));//
Ifl=C1_rms/Z1;//in amperes
Ifl1=C2_rms/Z2;//in amperes
disp(Ifl,"fundamental component of load current in amperes is")
disp(Ifl1,"second harmonic component of load current in amperes is")
|
af1ec208ab79d5db62d0a6ae9ac11921c831430b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1904/CH4/EX4.10/4_10.sce | 34c34c120719a2ee64eb50262161c14c038633da | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 570 | sce | 4_10.sce | //To find the substation spacing and load on transformers
//Page 217
clc;
clear;
D=500; //Load Density in kVA per sq.miles
Vl=12.47; //Line Voltage in kV
N=2; //Feeders per substation
//From Table A-5 Appendix A it Current Ampacity can be found
Imax=340;
S2=sqrt(3)*Vl*Imax; //Load Per Feeder
l2=sqrt(S2/D); //Length of the feeder
S=2*l2; //Substation Spacing
TS2=S2*N; //Total Load on substation
printf('\nThe Parts a,b and c of thhis question cannot be coded\n')
printf('d) The substation size and spacing is %g kVA and %g miles\n',TS2,S)
|
509ec39dc2088935a12739b5bd3c811e154c5af0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3369/CH12/EX12.1/Ex12_1.sce | 78ef92ed895cab63588855118eea5ba764093d0d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 932 | sce | Ex12_1.sce | //Chapter 12, Exmaple 1, page 403
//Calculate radial thickness of insulating layer
clc
clear
//based on equation 12.15 and v1alues of E1 and E2
E1 = 40 // kV/cm
E2 = 25 // kV/cm
ep1 = 6 // permittives of the material
ep2 = 4 //permittives of the material
d1 = 4 // cm
d2 = 10 // cm
r1 = 2 // cm
r2 = (E1*ep1*2)/(E2*ep2)
inner = r2-(d1/2)
outer = (d2/2)-r2
//based on equation 12.16
V1peak = E1*r1*log(r2/r1) // inner dielectric
V2peak = E2*r2*log(d2/(2*r2)) // outter dielectric
Vcab = V1peak+V2peak // Peak volatge of cable
rms = Vcab/sqrt(2)
printf("\n Radius = %f cm ",r2)
printf("\n Inner radial thickness = %f cm ",inner)
printf("\n Outer radial thickness = %f cm",outer)
printf("\n Vpeak of outer dielectric = %f kV", V1peak)
printf("\n Vpeak of inner dielectric = %f kV", V2peak)
printf("\n Peak voltage of cable = %f kV", Vcab)
printf("\n Safe opearating voltage = %f kV", rms)
// Answers may vary due to round off error.
|
ecb8c805a86a6f200ea491bb9edf48b83762954f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH8/EX8.7/Ex8_7.sce | 4900e986e0c09222d186adf645263adcb4a972a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,474 | sce | Ex8_7.sce | //Example 8_7
clc;clear;funcprot(0);
//Given values
Z_a=5;// m
Z_b=13;// m
D_1=0.04;
D_2=0.08;// The diameters of the two pipes m
L_1=36;// m
L_2=36;// m
W_elect=8000;// W
n_pump=0.70;
g=9.81;// m/s^2
//Properties
rho=998;// kg/m^3
mu=1.002*10^-3;// kg/m.s
eps=0.000045;// m
//Calculation
// V1=y(1); V2=y(2); Re1=y(3); Re2=y(4); f1=y(5);f2=y(6);h_L1=y(7);h_L2=y(8); h_pump=y(9);v1=y(10);v2=y(11);v=y(12);h_L=y(13)
function[X]=flowrate(y);
X(1)=real(((rho*y(12)*g*y(9))/n_pump)-W_elect);
X(2)=real(((y(10)*4)/(%pi*D_1^2))-y(1));
X(3)=real(((y(11)*4)/(%pi*D_2^2))-y(2));
X(4)=real(((rho*y(1)*D_1)/(mu))-y(3));
X(5)=real(((rho*y(2)*D_2)/(mu))-y(4));
X(6)=real((-2.0*log10(((eps)/(3.7*D_1)))+(2.51/(y(3)*sqrt(y(5)))))-(1/sqrt(y(5))));
X(7)=real((-2.0*log10(((eps)/(3.7*D_2)))+(2.51/(y(4)*sqrt(y(6)))))-(1/sqrt(y(6))));
X(8)=real(((y(5)*L_1*(y(1)^2))/(D_1*g*2))-(y(7)));
X(9)=real(((y(6)*L_2*(y(2)^2))/(D_2*g*2))-(y(8)));
X(10)=real((y(10)+y(11))-y(12));
X(11)=real(((Z_b-Z_a)+y(13))-y(9));
X(12)=real(y(7)-y(13));
X(13)=real(y(8)-y(13));
endfunction
y=[1 1 100000 100000 0.01 0.01 10 10 10 0.01 0.001 0.01 10];
fr=fsolve(y,flowrate);
printf('The total flow rate between the reservoirs ,v=%0.4f m^3/s\n',fr(12));
printf('The flow rate through pipe 1,v_1=%0.5f m^3/s\n',fr(10));
printf('The flow rate through pipe 2,v_2=%0.4f m^3/s\n',fr(11));
// The answer vary due to round off error
|
cb2d8fef14a91b2e8267aee02cf8e0e008f19660 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3821/CH7/EX7.15/Example7_15.sce | 3c997555fa55a66da97bb0f4d6b3aeb8cdf3bc66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 914 | sce | Example7_15.sce | ///Chapter No 7 Fluid Mechanics
///Example 7.15 Page No:127
/// Find Total energy per unit weight
///Input data
clc;
clear;
S=0.85; //Specific gravity of oil
D=0.08; //Diameter of pipe in m
P=1*10^5; //Intenity of presssure in N/m^2
Z=15; //Total energy bead in m
E=45; //Datum plane in m
Mdw=1*10^3; //Mass density of water constant
g1=9.81; //Gravity constant
rho=S*Mdw; //Mass density of oil
pi1=3.14;
///calculation
rho=S*Mdw; //Mass density of oil
//E=(P/(rho*g1))+((V**2)/(2*g1))+(Z);
V=sqrt((E-((P/(rho*g1))+Z))*(2*g1)); ///Total energy per unit weight in m/s
Q1=(pi1/4)*D^2*V //Discharge in m^3/Kg
///output
printf('mass density of oil=%f Kg/m^3 \n',rho);
printf('Total energy per unit weight= %f m/s \n ',V);
printf('discharge= %f m^3/kg',Q1);
|
89b88162465d3c2ae4c15e70683fbc8620b4a0e2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2681/CH1/EX1.12/Ex1_12.sce | 55976ed4ddd8b69a80e96495b3c843e9c503bda9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 181 | sce | Ex1_12.sce | //find the frequency of the wave
//given
clc
t1=100d-12
t2=500d-12
t3=1d-9
f1=t1^-1
f2=t2^-1
f3=t3^-1
disp(f3*1D-9,f2*1D-9,f1*1D-9,'the frequencies respectively')//in GHz
|
852666a6e623bf9604dc1ea83ca8ef436b23cdf3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /371/CH13/EX13.4/13_4.sci | f86b3469ae75645d86830d24d584d71d0265b342 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 296 | sci | 13_4.sci | //Choppers and Transportation System Application//
//Example 13.4//
E=220;//dc supply voltage in volts//
El=660;//Load voltage in volts//
Toff=100;//blocking period in microseconds//
Ton=(El/E-1)*Toff;//Conduction period in microseconds//
printf('Conduction period=Ton=%fmicroseconds',Ton); |
e025e0266fa29649da507310c9b62877b220e7bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH7/EX7.11/Ch07Ex11.sce | 929fcb0a88e345cc4baa666ab2352b8119c73c1c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 438 | sce | Ch07Ex11.sce | // Scilab Code Ex7.11: : Page-7.16 (2009)
clc; clear;
Pi = 1.5; // Input power to the optical fibre, mW
Po = 0.5; // Output power to the optical fibre, mW
L = 0.12; // Length of the optical fibre, km
alpha_dB = 10/L*log10(Pi/Po); // Signal attenuation in optical fibre, dB/km
printf("\nThe signal attenuation in optical fibre = %4.1f dB/km", alpha_dB);
// Result
// The signal attenuation in optical fibre = 39.8 dB/km
|
81ebe0f9cce80c9a64264ee9fdef932503d241ef | e5011b60e41005e823ea544d8bfeac90bd598ce6 | /trigger_vlsisim/trigger.tst | 26aa53b957e104abd38c927331a689775dce9aa2 | [] | no_license | Alexander-Andrade/Andrade_kidswt3_var9 | 120bf2ce69ffd298963f423c2ba966021cac0d86 | 278de61f5f24e249c69029eecd3e593369b00c8a | refs/heads/master | 2020-08-01T19:25:37.450759 | 2016-11-12T18:03:20 | 2016-11-12T18:03:20 | 73,569,322 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 24 | tst | trigger.tst | 00
01
10
11
01
00
11
10
|
6febbaab0381e88242742c37509987b71bf5f47a | 91b832450220a725d2a536ea9c58c986ef1225c4 | /2020-2021/MatModel/laboratory/lab 3/lab 3.sce | 0db3cbd881115f3eaee9597fe995234e5f87757d | [] | no_license | Mulixin/work | 245e9e03ce4fab893356e50ff42c4e157f692fd6 | 981f8164fca19390c87c15bfbf63fcc231b0a829 | refs/heads/master | 2023-04-01T06:26:35.286306 | 2021-04-03T11:17:47 | 2021-04-03T11:17:47 | 339,715,890 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,914 | sce | lab 3.sce | //Вариант 43. Задание 2. Модель боевых действий между регулярными войсками
x0 = 227000; //численность первой армии
y0 = 139000; //численность второй армии
t0 = 0; //начальный момент времени
a = 0.24; //константа, характиризующая степень влияния различных факторов на потери
b = 0.75; // эффективность боевых действий армии у
c = 0.28; // эффективность боевых действий армии х
h = 0.18; //константа, характиризующая степень влияния различных факторов на потери
tmax = 1; // предельный момент времени
dt = 0.05; //шаг изменения времени
t = [t0:dt:tmax];
function p = P(t)
p = sin(8*t) + 1; //возможность подхода подкрепления для первой армии
endfunction
function q = Q(t)
q = 2 * abs(cos(t));//возможность подхода подкрепления для второй армии
endfunction
//Система дифференциальных уравнений
function dy = syst(t, y)
dy(1) = -a * y(1) - b * y(2) + P(t); //изменение числинности первой армии
dy(2) = -c * y(1) * y(2) - h * y(2) + Q(t); //изменение численности второй армии
endfunction
v0 = [x0;y0]; //вектор начальных условий
//Решение системы
y = ode(v0, t0, t, syst);
//построение графиков решений
scf(0);
plot2d (t, y(1,:), style = 2);
xtitle ("Модель боевых действий №2", "Шаг", "Численность армии");
plot2d (t, y(2,:), style = 5);
xgrid ();
|
84d12c0ec0c579cabcc6d3175ee2648c3056a454 | 30e70994267907297af58839d1b4e90c43f0b373 | /Progetto1/Progetto1_Scilab.sce | 3109de243d4fe633a4ba9a7352debcafe7992a61 | [] | no_license | gianlucapuleri/Scientific-Calculation-methods | 57bf61409f7a28cae826ff56c3ac583018d3ad2b | 89b492aec90a80c1cd4d7d4315f13635768a5b8b | refs/heads/master | 2022-04-20T01:44:31.647824 | 2020-04-20T18:05:57 | 2020-04-20T18:05:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,091 | sce | Progetto1_Scilab.sce | clear
path = //percorso
//StocF-1465.mat e Flan_1565.mat NON FUNZIONANO
matrici=list("cfd2.mtx", "cfd1.mtx", "G3_circuit.mtx", "parabolic_fem.mtx", ...
"apache2.mtx", "shallow_water1.mtx");
c=cell((size(matrici)+1, 4));
c(1,:)={"Nome,", "Dimensione,", "Tempo,", "Errore"};
for i = 1 : size(matrici);
//Carico file matrice
mmread(path+ matrici(i));
sleep(1000); //utile per calcolare la memoria
//CREAZIONE MATRICE A, VETTORE B, VETTORE XE
A = sparse(ans);
xe = ones(size(A, "r"), 1);
b = A * xe ;
//RISOLUZIONE SISTEMA E CALCOLO TEMPO RISOLUZIONE
tic();
//[L,P] = spchol(A); ALTERNATIVA MOLTO PIU LENTA
//x = P*(L'\(L\(P'*b)));
Cp = taucs_chfact(A);
x = taucs_chsolve(Cp,b);
time = toc();
//ERRORE RELATIVO E MEMORIA OCCUPATA
errore_relativo = norm(x - xe)/norm(xe);
c(i+1,:) = {matrici(i)+",", string(size(A,1))+"x"+string(size(A,1))+",", string(time)+",", string(errore_relativo)};
end
mat=cell2mat(c);
csvWrite(mat, "scilabResultLinux.csv");
disp('Fine elaborazione');
|
2b4114c3a116b9e39e71ce7c710066f922d8fce5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH12/EX12.7/12_7.sce | c1c6f3021ba8998a2123686b0c5cba0a1e60c71b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 246 | sce | 12_7.sce | //CLC
d= 600 //mm
b= 250 //mm
BM= 350 //KNm
t= 28
Sc= 30 //N/mm^2
T= 400 //N/mm^2
//CALCULATIONS
Mu= 0.15*Sc*b*d^2*10^-6
n= d-sqrt(d^2-(2*BM*10^6/(0.4*Sc*b)))
l= d-(n/2)
As= BM*10^6/(l*T*0.87)
//RESULTS
printf("As(mm^2) = %.2f",As)
|
242e500d2ebec039fe6418caecd7f6b8fdc9c26b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3446/CH2/EX2.9/Ex2_9.sce | c9e9947ff04661ff499e6979bfe587c5a98ac37f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex2_9.sce | //Exa 2.9
// To find total traffic in Erlangs and no of MScs required to handle it.
clc;
clear all;
Tpopu=200000;//Total population
SP=0.25; //subscriber penetration
HT1=100; //holding time for Mobile to Land line and vicecersa
c1=3; //Avg calls/hr for Mobile to Land line and vicecersa
HT2=80; //For mobile to mobile
c2=4; //For mobile to mobile
TMSC=1800; //traffic one msc can hold
TrafDist=0.9 //Traffic distribution for Mobile to Land line and vicecersa
//solution
aM_L=c1*HT1/3600; //Traffic Generated by Subscriber (M-L and L-M).
aM_M=c2*HT2/3600; //Traffic Generated by Subscriber (M-M).
WlessSub=SP*Tpopu; //total wireless subscribers
TotalTraffic=WlessSub*TrafDist*aM_L+WlessSub*(1-TrafDist)*aM_M;
MSCreqd=TotalTraffic/TMSC;
if(MSCreqd-int(MSCreqd)>0)//for rounding of to next integer ef 2.33 to 3
MSCreqd=MSCreqd+1;
end
printf('Total Traffic is %.1f Erlangs \n',TotalTraffic);
printf(' NO of MSCs Required are %d \n',int(MSCreqd));
|
74830ab456f3d4019b92a624a70a2873496f1752 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH1/EX1.10/Ex1_10.sce | aa6fa661efbec5a727f5d4f4a263c6027c8e03cf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 359 | sce | Ex1_10.sce | //pagenumber 32 example 10
clear
resist=0.12;//ohm metre
q=1.6*10^-19;
concn1=((1/resist)/(0.048*q));//concentration of hole
concne=((1.5*10^16)^(2))/concn1;//concentration of electron
disp("concentration of hole = "+string((concn1))+"per cubic centimetre");
disp("concentration of electron = "+string((concne))+"per cubic centimetre");
|
cf7e08bfbd082c14872b1e08c46468e1b52771df | 6be22cc470807d3b2d9a8042a18ccd96070d00ae | /propulsion/turbofan_engine/hw_8_p1.sce | 40d5ab41715028b5f8dc4f27bd864084b93988ae | [] | no_license | ordinatorix/scilab_projects | a8e5096ddd0c343559bb06c1c05c0926e4f13fdc | 1f227a2bdf8e2ae7a7f1fa42788e9a346710fa40 | refs/heads/master | 2022-02-27T14:52:47.802082 | 2016-05-06T21:09:07 | 2016-05-06T21:09:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,211 | sce | hw_8_p1.sce | // Hw 8-------------------------------------------------------------------
// Close and clear all
clc; clear; close; close; close; close; close; close; close; close; close;
close;
// Independant Parameters------------------------------------------------
M_a = 0.8;
P_a = 26500; // (Pa)
T_a = 223.252; // (K)
h_c = 43000000; // (j/kg)
gamma_a = 1.4;
gamma_c = 1.35;
gamma_e = gamma_c;
R = 287;
r_f = 2;
r_c = 24;
r_b = 0.97;
FA_st = 0.06;
To_4_max = 1500; // (K)
eff_diff = 0.94;
eff_comp = 0.87;
eff_fan = 0.92;
eff_burn = 0.98;
eff_turb = 0.85;
eff_c_nzl = 0.97;
eff_f_nzl = 0.98;
cp_a = (gamma_a/(gamma_a-1))*R;
cp_c = (gamma_c/(gamma_c-1))*R;
cp_ = (gamma_e/(gamma_e-1))*R;
P_e = P_a;
// Design Variable--------------------------------------------------------
B = [0.1:0.1:7.2];
//B = [0.1:0.1:20];
// Dependant Paramenters--------------------------------------------------
W_t_out = zeros(1,72);
To_5_r = zeros(1,72);
To_5_i = zeros(1,72);
Po_5 = zeros(1,72);
To_7_r = zeros(1,72);
Po_7 = zeros(1,72);
P_7 = zeros(1,72);
T_7_i = zeros(1,72);
T_7_r = zeros(1,72);
u_c_e = zeros(1,72);
M_c_e = zeros(1,72);
Thrust = zeros(1,72);
I = zeros(1,72);
TSCF = zeros(1,72);
eff_propul = zeros(1,72);
eff_therm = zeros(1,72);
ell_overall = zeros(1,72);
// Ambient Conditions-----------------------------------------------------
u_a = M_a*sqrt(gamma_a*R*T_a);
Po_a = P_a*(1+(gamma_a-1)/2*M_a^2)^(gamma_a/(gamma_a-1));
To_a = T_a*(1+(gamma_a-1)/2*M_a^2);
// Inlet/Diffuser Conditions----------------------------------------------
To_2_r = To_a;
To_2_i = eff_diff*(To_2_r-T_a)+T_a;
Po_2 = P_a*(To_2_i/T_a)^(gamma_a/(gamma_a-1));
// Fan Outlet Conditions---------------------------------------------------------
Po_8 = r_f*Po_2;
To_8_i = To_2_r*(r_f)^((gamma_a-1)/gamma_a);
To_8_r = (To_8_i-To_2_r)/eff_fan+To_2_r;
W_f_in = B.*cp_a.*(To_8_r-To_2_r);
// Compressor Conditions--------------------------------------------------
Po_3 = r_c*Po_2;
To_3_i = To_2_r*r_c^((gamma_a-1)/gamma_a);
To_3_r = (To_3_i-To_2_r)/eff_comp+To_2_r;
W_c_in = cp_a*(To_3_r-To_2_r);
// Burner Conditions------------------------------------------------------
FA = ((To_4_max/To_3_r-1)/((eff_burn*h_c)/(cp_c*To_3_r)-(To_4_max/To_3_r)));
eq_ratio = FA/FA_st;
To_4_r = To_4_max;
Po_4 = r_b*Po_3;
// Turbine Conditions-----------------------------------------------------
W_t_out = W_c_in+W_f_in;
To_5_r = To_4_r-W_t_out./((1+FA).*cp_c);
To_5_i = To_4_r-(To_4_r-To_5_r)./eff_turb;
Po_5 = Po_4.*(To_5_i./To_4_r).^(gamma_c./(gamma_c-1));
// Core Nozzle Conditions------------------------------------------------------
To_7_r = To_5_r;
Po_7 = Po_5;
P_7 = P_e;
T_7_i = To_7_r.*(P_7./Po_7).^((gamma_e-1)./gamma_e);
T_7_r = To_5_r-((To_5_r-T_7_i).*eff_c_nzl);
u_c_e = sqrt(2.0.*eff_c_nzl.*(gamma_e./(gamma_e-1)).*R.*To_5_r.*(1-(P_e./Po_5).^((gamma_e-1)./(gamma_e))));
M_c_e = u_c_e./sqrt(gamma_e.*R.*T_7_r);
A_ratio_c = 1.0./M_c_e.*((2.0./(gamma_e+1)).*(1+((gamma_e-1)./2.0).*M_c_e.^2)).^((gamma_e+1)./(2.0.*(gamma_e-1)));
// Fan Nozzle Conditions--------------------------------------------------
To_9_r = To_8_r;
T_9_i = To_8_r./((Po_8./P_e).^((gamma_a-1)./gamma_a));
T_9_r = To_8_r-(eff_f_nzl.*(To_8_r-T_9_i));
u_f_e = sqrt(2.0.*eff_f_nzl.*(gamma_a./(gamma_a-1)).*R.*To_8_r.*(1-(P_a./Po_8).^((gamma_a-1)./(gamma_a))));
M_f_e = u_f_e./sqrt(gamma_a.*R.*T_9_r);
A_ratio_f = 1.0./M_f_e.*((2.0./(gamma_e+1)).*(1+((gamma_e-1)./2.0).*M_f_e.^2)).^((gamma_e+1)./(2.0.*(gamma_e-1)));
// Engine Performance-----------------------------------------------------
Thrust = B.*(u_f_e-u_a)+((1+FA).*u_c_e-u_a);
I = (1+FA).*u_c_e+B.*u_f_e-(1+B).*u_a;
TSFC = FA./I;
W_dot_P = Thrust.*u_a;
m_dot = 1;
P_avail = m_dot.*((1+FA).*((u_c_e.^2)./2)+B.*((u_f_e.^2)./2)-(B+1).*(u_a.^2)./2);
P_in = FA.*m_dot.*h_c;
eff_propul =(I.*u_a)./((1+FA).*((u_c_e.^2)./2)+B.*((u_f_e.^2)./2)-(B+1).*(u_a.^2)./2);
eff_therm = P_avail./P_in;
eff_overall = eff_therm.*eff_propul;
// Plot Graphs to be Compared---------------------------------------------
f0 = scf(5); //creates figure with id==0 and make it the current one
f1 = scf(6); //creates figure with id==1 and make it the current one
f2 = scf(7);
f3 = scf(8);
f4 = scf(9);
// Plot Specific Thrust---------------------------------------------------
scf(f0);
subplot(311);
plot(B,I, 'r');
xtitle("Specific Thurst VS Bipass Ratio","B","Specific Thurst(N*s/Kg)");
// plot TSFC--------------------------------------------------------------
subplot(312);
plot(B,TSFC, 'g');
xtitle("TSFC VS Bipass Ratio","B","TSFC(Kg/N*s)");
// plot area ratio--------------------------------------------------------
subplot(313);
plot(B,A_ratio_c, 'r');
plot(B,A_ratio_f, 'b');
xtitle("Area Ratio VS Bipass Ratio","B","Area Ratio");
// Plot Temperature Across TurboJet---------------------------------------
scf(f1);
subplot(111);
plot(B,To_5_r, 'c');
plot(B,T_7_r, 'm');
xtitle("Stagnation Temperature VS Bipass Ratio","B","Temperature (K)");
leg=legend(['To_5_r';'T_7_r'],[3]);
// Plot Temperature Across TurboJet---------------------------------------
scf(f2);
subplot(111);
plot(B,Po_5, 'm');
xtitle("Stagnation Pressure VS Bipass Ratio","B","Pressure (Pa)");
leg=legend(['Po_5'],[4]);
// plot efficiencies------------------------------------------------------
scf(f3);
subplot(111);
plot(B,eff_therm, 'r');
plot(B,eff_propul, 'b');
plot(B,eff_overall, 'g');
xtitle("Efficiencies VS Bipass Ratio","B","Effeciency");
leg=legend(['Thermal Efficiency';'Propulsive Efficiency';'Overall Efficiency'],[2]);
// Plot Exit Mach number--------------------------------------------------
scf(f4);
subplot(111);
plot(B,M_c_e, 'r');
plot(B,M_f_e, 'r');
xtitle("Core & Fan Exit Mach Number VS Bipass Ratio","B","M");
// optimal bypass ratio at 5.9
|
fd2972c1f66c62f99adb5dede96695ea97dcff35 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH4/EX4.5/4_5.sce | cb0e6c5cf6ba108850db0a8d06d5d2e2a8eaeb82 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 751 | sce | 4_5.sce | clc,clear
printf('Example 4.5\n\n')
Pole=16
N_s=375 //synchronous speed in rpm
Slots=144
E_line=2.657*10^3 //line value of emf across terminals
f=Pole*N_s/120 //frequency
K_c=1 //assuming full pitch winding,Coil span Factor=1
n=Slots/Pole //slots per pole
m=n/3 //slots per pole per phase
beeta=180/n
K_d=sind(m*beeta/2) /(m*sind(beeta/2)) //Distribution Fcator
conductors_per_slot=10
Z=Slots*conductors_per_slot //total conductors
Z_ph=Z/3 //number of conductors per phase
T_ph=Z_ph/2 //no of turns per phase
E_ph=E_line/sqrt(3) //phase value of emf across terminals
phi=E_ph/(4.44*K_c*K_d*f*T_ph) //E_ph=4.44*K_c*K_d*f*phi*T_ph
printf('Frequency of Induced e.m.f is %.0fHz\nFlux per Pole is %.0f mWb',f,phi*1000)
|
77ad17c025cfd5203c9d97c4825b415abe0f96fa | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH15/EX15.07/15_07.sce | f0cdcd143a72ba109ae2acb3cd9ef73307d18ad2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,448 | sce | 15_07.sce | //pathname=get_absolute_file_path('15.07.sce')
//filename=pathname+filesep()+'15.07-data.sci'
//exec(filename)
//Mass of steam entering(in kg/min):
m1=350
//Volume of water required(in m^3 per kg steam):
v=0.02
//Amount of air mass going into condenser:
r=0.05/100
//Volume of air dissolved in the water injected:
r1=5/100
//Height in mercury column in condenser(in cm):
h=68
//Inlet temperature(in K):
T=20+273
//Atmospheric pressure(in kPa):
p=101.3
//Density of mercury(in kg/cm^3):
d=0.0135951
//Acceleration due to gravity(in m/s^2):
g=9.81
//Gas constant(in kJ/kg.K):
R=0.287
//Specific heat of water(in kJ/kg.K):
Cpw=4.18
//Volumetric efficiency:
n=0.90
//From steam tables:
ps=4.246 //kPa
vf=0.001004 //m^3/kg
//Absolute pressure in condenser(in kPa):
pt=(76-h)*d*10^4*g*10^(-3)
//Partial pressure of air(in kPa):
pa=pt-ps
//Volume of cooling water required per minute(in m^3/min):
V1=m1*v
//Mass of air going into condenser(in kg/min):
m2=m1*r
//Volume of air entering per minute with cooling water(in m^3/min):
V=V1*r1
//Mass of air with cooling water(in kg):
m=p*V/(R*T)
//Total mass of air inside condenser(in kg):
mt=m+m2
//Volume of air corresponding:
V2=mt*R*(273+30)/pa
//Volume of steam condensed(in m^3/min):
V3=m1*vf
//Total volume(in m^3/min):
Vt=V3+V2+V1
//Actual capacity of air pump(in m^3/min):
C=Vt/n
printf("\nRESULT\n")
printf("\nCapacity of air pump = %f m^3/min",C) |
f005d4d19ea1d0a9319ea0341aa8e6ad83fae3f7 | 297b29fb450286d0f7fa619e58c9f4a86949544a | /MER.sci | f6341743fc6f813261556f146b39c6a665638978 | [] | no_license | harshal93shah/scilabcom | 46dc948c1e0d0b37b0a69dfa203347298cc01e40 | 09c5506089a4283968d963ed3812de9823c5a008 | refs/heads/master | 2020-04-06T07:03:23.954966 | 2016-10-04T11:49:41 | 2016-10-04T11:49:41 | 54,882,787 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,274 | sci | MER.sci | function [avgMER,minMER,perMER] = MER(rxsg,txsg,xper)
avgMER = [];
minMER=[];
perMER=[];
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
//MER The MER Measurement fn outputs the modulation error ratio (MER).
// MER is a measure of the signal-to-noise ratio (SNR) in digital modulation
// applications. The block measures all outputs in dB.
//he modulation error ratio is the ratio of the average reference signal power
//to the mean square error. This ratio corresponds to the SNR of the AWGN channel.
// The minimum MER represents the best-case MER value per burst
//he Xth percentile is the MER value above which X% of all the computed MER values lie
//[avgMER,minMER,perMER] = MER(rxsg,txsg,avgdmn,xper)
//rxsg:received signal- A vector
//txsg:transmitted - A vector
//xper:X-percentile value above which X% of the MER measurements fall,
//specified as a real scalar from 0 to 100
// Author - Harshal Shah
//checking conditions on transmitted signal
if( min(size(txsg))~=1 ) then
error("MER:improper transmitted signal");
end
// checking conditions on received signal
if( min(size(rxsg))~=1 ) then
error("MER:improper received signal");
end
if(size(txsg)~=size(rxsg)) then
error("MER:txsig and rxsig should have same dimensions");
end
// checking conditions on X-percentile
if (~isreal(xper) | length(xper)~=1 | isnan(xper)|xper<0|xper>100) then
error("MER:improper X-percentile");
end
sgpw =0;
nopw=0;
N=length(txsg);
for i =1:N
it=real(txsg(i));
ir=real(rxsg(i));
qt=imag(txsg(i));
qre=imag(rxsg(i));
e(i)=(it-ir)^2+(qt-qre)^2;
nopw=nopw+e(i);
sgpw=sgpw+(it^2)+(qt^2);
end
for i=1:N
if(e) then
merk(i)=10*log10(sgpw/(e(i)*N));
else
merk(i)=%inf;
end
end
if(nopw) then
avgMER = 10*log10(sgpw/nopw);
else
avgMER=%inf;
end
minMER = min(merk);
merk=gsort(merk);
n=ceil(xper*N/100);
perMER=merk(n);
endfunction
|
d2957bcb357e53a525cf45bd0fe1837d4a82510c | 449d555969bfd7befe906877abab098c6e63a0e8 | /575/CH9/EX9.5.4/9_5_4.sce | 0c7fc39e1d9c87eef8e9a6573cfe83c236977d14 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 9_5_4.sce | clc
pathname=get_absolute_file_path('9_5_4.sce')
filename=pathname+filesep()+'954.sci'
exec(filename)
printf(" All the values in the textbook are Approximated hence the values in this code differ from those of Textbook")
disp("Carbon Balance")
printf("%d * %f *2 + %d * %f *2=2 n1+2 n2",basis,x,basis,1-x)
disp("Hydrogen Balance")
printf("%d * %f *6 + %d * %f *4 = 6 n1+4 n2+2 n3",basis,x,basis,1-x)
disp("Energy Balance")
printf("%d = %f n1 %f n2 + %f n3 -%d * %f -%d* %f",Q,HoutEthanol,HoutEthanone,HoutHydrogen,NinEthanol,HinEthanol,NinEthanone,HinEthanone)
A=[1 1 0;3 2 1;216.81 150.9 -6.595]
b=[150;435;28412]
C=A\b
n1=C(1,1)
printf(" \n n1=%f mol Ethanol/s",n1)
n2=C(2,1)
printf(" \n n2=%f mol Ethanone/s",n2)
n3=C(3,1)
printf(" \n n3=%f mol Hydrogen/s",n3)
disp("The solutions in the Text are Wrong")
fraction=(NinEthanol-n1)/NinEthanol
printf("Fractional conversion of Ethanol=%f",fraction) |
244092cb9da0253737a843b88e545119cdba711c | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/SH12.prev.tst | 1136d994bd3026fcf736ff39fb7b37f757be9abb | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | tst | SH12.prev.tst | expression: x=a+log(0.001)*b + floor(3.14^2)
postfix1: ;x;a;log(;0.001;log);b;*;+;floor(;3.14;2;^;floor);+;=
rebuilt1: x=a+log(0.001)*b+floor(3.14^2)
postfix2: ;x;a;log(;0.001;log);b;*;+;floor(;3.14;2;^;floor);+;=
rebuilt2: x=a+log(0.001)*b+floor(3.14^2)
same
|
301b45581b62aa9f0be5af855dac2230e7a7353a | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Revolving Tracking Strafes.sce | d748f7251c3ea1ec533fa276d7e209cfae2f34db | [] | 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 | 132,210 | sce | Revolving Tracking Strafes.sce | Name=Revolving Tracking Strafes
PlayerCharacters=RTv2 Challenger
BotCharacters=RTv2 Strafing Target.bot;RTv2 Static Target.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=RTv2 Challenger
AddedBots=RTv2 Strafing Target.bot;RTv2 Strafing Target.bot
PlayerMaxLives=0
BotMaxLives=0;0
PlayerTeam=1
BotTeams=2;2
MapName=infinity_circuit_v2.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=true
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=1.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=Tracking
WeaponHeroTag=LG
DifficultyTag=5
AuthorsTag=pleasewait
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=true
Description=Improve tracking while revolving like a heli gunner.
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=RTv2 Aimbot
MinReactionTime=0.1
MaxReactionTime=0.1
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.001
FlickFOV=90.0
FlickSpeed=1.0
FlickError=0.0
TrackSpeed=1.0
TrackError=0.0
MaxTurnAngleFromPadCenter=360.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=360.0
OuterAimPenalty=0.0
MaxError=0.0
ShootFOV=90.0
VerticalAimOffset=0.0
MaxTolerableSpread=0.0
MinTolerableSpread=0.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=1.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=RTv2 Strafing Target
DodgeProfileNames=RTv2 Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=1.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=RTv2 Aimbot;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=RTv2 Target
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=RTv2 Static Target
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=1.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=RTv2 Aimbot;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=RTv2 Target
SeeThroughWalls=false
NoDodging=true
NoAiming=false
[Character Profile]
Name=RTv2 Challenger
MaxHealth=1.0
WeaponProfileNames=Shooter LG;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=48.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=384.0
MaxCrouchSpeed=500.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=100.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.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=96.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=1.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=96.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=16.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=RTv2 Target
MaxHealth=100.0
WeaponProfileNames=Velocity Keeper v2;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=48.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=384.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=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=true
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=96.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=96.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=16.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=1024.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=RTv2 Strafes
MaxTargetDistance=480.0
MinTargetDistance=384.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=0.45
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.0
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.0
MaxJumpTime=0.0
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=Shooter LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=10.0
KnockbackFactor=0.0
TimeBetweenShots=0.05
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.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=10.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=false
ADSZoomDelay=0.0
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.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=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=50.529999
ADSFOVScale=Vertical (1:1)
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=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
[Weapon Profile]
Name=Velocity Keeper v2
Type=Projectile
ShotsPerClick=1
DamagePerShot=0.0
KnockbackFactor=0.0
TimeBetweenShots=0.17
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=448.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=448.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=-50.000
MaxTravelTime=10.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.1
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=0.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.1
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.01
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=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=Gain Velocity For Stuck v2
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=4.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=4.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=true
Radius=640.0
DamageAtCenter=0.0
DamageAtEdge=0.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=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
[Weapon Profile]
Name=Gain Velocity For Stuck v2
Type=Projectile
ShotsPerClick=1
DamagePerShot=0.0
KnockbackFactor=0.0
TimeBetweenShots=0.17
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=448.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=448.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=-50.000
MaxTravelTime=10.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.1
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=0.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.1
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.01
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=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.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=350.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=350.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=true
Radius=64.0
DamageAtCenter=0.0
DamageAtEdge=0.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=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
-518.617310 -448.000031 808.888916
-490.469147 -448.000000 675.555603
-502.814850 -448.000031 812.246948
-475.259277 -320.000000 681.876587
-502.814850 -320.000000 812.246948
-475.259277 -448.000000 681.876587
-490.469147 -320.000000 675.555603
-518.617310 -320.000000 808.888916
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-490.469147 -448.000000 675.555603
-443.555573 -448.000031 560.000061
-475.259277 -448.000000 681.876587
-429.333344 -320.000000 568.888916
-475.259277 -320.000000 681.876587
-429.333344 -448.000031 568.888916
-443.555573 -320.000000 560.000061
-490.469147 -320.000000 675.555603
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
-443.555573 -448.000031 560.000061
-377.876526 -448.000000 462.222198
-429.333344 -448.000031 568.888916
-365.037048 -320.000000 473.283936
-429.333344 -320.000000 568.888916
-365.037048 -448.000000 473.283936
-377.876526 -320.000000 462.222198
-443.555573 -320.000000 560.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-377.876526 -448.000000 462.222198
-293.432068 -447.999939 382.222168
-365.037048 -448.000000 473.283936
-282.370361 -320.000000 395.061676
-365.037048 -320.000000 473.283936
-282.370361 -447.999939 395.061676
-293.432068 -320.000000 382.222168
-377.876526 -320.000000 462.222198
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-293.432068 -447.999939 382.222168
-190.222229 -448.000031 320.000000
-282.370361 -447.999939 395.061676
-181.333328 -320.000000 334.222229
-282.370361 -320.000000 395.061676
-181.333328 -448.000031 334.222229
-190.222229 -320.000000 320.000000
-293.432068 -320.000000 382.222168
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
-190.222229 -448.000031 320.000000
-64.553108 -448.000000 274.020386
-181.333328 -448.000031 334.222229
-58.232132 -320.000000 289.230255
-181.333328 -320.000000 334.222229
-58.232132 -448.000000 289.230255
-64.553108 -320.000000 274.020386
-190.222229 -320.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
305.363312 -448.000000 272.925690
432.000000 -448.000031 324.444458
299.042297 -448.000000 288.135590
423.111084 -320.000000 338.666687
299.042297 -320.000000 288.135590
423.111084 -448.000031 338.666687
432.000000 -320.000000 324.444458
305.363312 -320.000000 272.925690
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
432.000000 -448.000031 324.444458
529.777771 -448.000000 390.123474
423.111084 -448.000031 338.666687
518.716003 -320.000000 402.962952
423.111084 -320.000000 338.666687
518.716003 -448.000000 402.962952
529.777771 -320.000000 390.123474
432.000000 -320.000000 324.444458
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
529.777771 -448.000000 390.123474
609.777832 -447.999939 474.567871
518.716003 -448.000000 402.962952
596.938232 -320.000000 485.629639
518.716003 -320.000000 402.962952
596.938232 -447.999939 485.629639
609.777832 -320.000000 474.567871
529.777771 -320.000000 390.123474
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
609.777832 -447.999939 474.567871
672.000061 -448.000031 577.777832
596.938232 -447.999939 485.629639
657.777771 -320.000000 586.666687
596.938232 -320.000000 485.629639
657.777771 -448.000031 586.666687
672.000061 -320.000000 577.777832
609.777832 -320.000000 474.567871
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
672.000061 -448.000031 577.777832
716.444519 -448.000000 699.753174
657.777771 -448.000031 586.666687
701.234619 -320.000000 706.074158
657.777771 -320.000000 586.666687
701.234619 -448.000000 706.074158
716.444519 -320.000000 699.753174
672.000061 -320.000000 577.777832
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
716.444519 -448.000000 699.753174
743.111084 -447.999969 840.493774
701.234619 -448.000000 706.074158
727.308594 -320.000000 843.851807
701.234619 -320.000000 706.074158
727.308594 -447.999969 843.851807
743.111084 -320.000000 840.493774
716.444519 -320.000000 699.753174
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
742.617798 -448.000031 951.110779
714.469543 -448.000000 1084.444214
726.815247 -448.000031 947.752808
699.259644 -320.000000 1078.123291
726.815247 -320.000000 947.752808
699.259644 -448.000000 1078.123291
714.469543 -320.000000 1084.444214
742.617798 -320.000000 951.110779
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
714.469543 -448.000000 1084.444214
667.555664 -448.000031 1200.000122
699.259644 -448.000000 1078.123291
653.333435 -320.000000 1191.111206
699.259644 -320.000000 1078.123291
653.333435 -448.000031 1191.111206
667.555664 -320.000000 1200.000122
714.469543 -320.000000 1084.444214
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
667.555664 -448.000031 1200.000122
601.876221 -448.000000 1297.778320
653.333435 -448.000031 1191.111206
589.036682 -320.000000 1286.716553
653.333435 -320.000000 1191.111206
589.036682 -448.000000 1286.716553
601.876221 -320.000000 1297.778320
667.555664 -320.000000 1200.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
601.876221 -448.000000 1297.778320
517.431274 -447.999939 1377.778687
589.036682 -448.000000 1286.716553
506.369507 -320.000000 1364.939209
589.036682 -320.000000 1286.716553
506.369507 -447.999939 1364.939209
517.431274 -320.000000 1377.778687
601.876221 -320.000000 1297.778320
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
517.431274 -447.999939 1377.778687
414.221069 -448.000031 1440.001465
506.369507 -447.999939 1364.939209
405.332214 -320.000000 1425.779175
506.369507 -320.000000 1364.939209
405.332214 -448.000031 1425.779175
414.221069 -320.000000 1440.001465
517.431274 -320.000000 1377.778687
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
414.221069 -448.000031 1440.001465
292.245575 -448.000000 1484.445923
405.332214 -448.000031 1425.779175
285.924683 -320.000000 1469.236084
405.332214 -320.000000 1425.779175
285.924683 -448.000000 1469.236084
292.245575 -320.000000 1484.445923
414.221069 -320.000000 1440.001465
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
292.245575 -448.000000 1484.445923
151.505249 -447.999969 1511.111938
285.924683 -448.000000 1469.236084
148.147324 -320.000000 1495.309570
285.924683 -320.000000 1469.236084
148.147324 -447.999969 1495.309570
151.505249 -320.000000 1511.111938
292.245575 -320.000000 1484.445923
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
40.888893 -448.000031 1510.617310
-92.444458 -448.000000 1482.469238
44.246918 -448.000031 1494.814819
-86.123459 -320.000000 1467.259277
44.246918 -320.000000 1494.814819
-86.123459 -448.000000 1467.259277
-92.444458 -320.000000 1482.469238
40.888893 -320.000000 1510.617310
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-92.444458 -448.000000 1482.469238
-208.000000 -448.000031 1435.555664
-86.123459 -448.000000 1467.259277
-199.111099 -320.000000 1421.333252
-86.123459 -320.000000 1467.259277
-199.111099 -448.000031 1421.333252
-208.000000 -320.000000 1435.555664
-92.444458 -320.000000 1482.469238
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
-208.000000 -448.000031 1435.555664
-305.777771 -448.000000 1369.876587
-199.111099 -448.000031 1421.333252
-294.716064 -320.000000 1357.037109
-199.111099 -320.000000 1421.333252
-294.716064 -448.000000 1357.037109
-305.777771 -320.000000 1369.876587
-208.000000 -320.000000 1435.555664
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-305.777771 -448.000000 1369.876587
-385.777771 -447.999939 1285.432007
-294.716064 -448.000000 1357.037109
-372.938293 -320.000000 1274.370239
-294.716064 -320.000000 1357.037109
-372.938293 -447.999939 1274.370239
-385.777771 -320.000000 1285.432007
-305.777771 -320.000000 1369.876587
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-385.777771 -447.999939 1285.432007
-448.000031 -448.000031 1182.222290
-372.938293 -447.999939 1274.370239
-433.777802 -320.000000 1173.333374
-372.938293 -320.000000 1274.370239
-433.777802 -448.000031 1173.333374
-448.000031 -320.000000 1182.222290
-385.777771 -320.000000 1285.432007
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-448.000031 -448.000031 1182.222290
-492.444550 -448.000000 1060.246826
-433.777802 -448.000031 1173.333374
-477.234680 -320.000000 1053.925781
-433.777802 -320.000000 1173.333374
-477.234680 -448.000000 1053.925781
-492.444550 -320.000000 1060.246826
-448.000031 -320.000000 1182.222290
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-492.444550 -448.000000 1060.246826
-519.111084 -447.999969 919.506104
-477.234680 -448.000000 1053.925781
-503.308624 -320.000000 916.148071
-477.234680 -320.000000 1053.925781
-503.308624 -447.999969 916.148071
-519.111084 -320.000000 919.506104
-492.444550 -320.000000 1060.246826
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-520.000000 -448.000000 1520.000000
760.000000 -448.000000 1520.000000
760.000000 -448.000000 -976.000000
-520.000000 -448.000000 -976.000000
-520.000000 -464.000000 1520.000000
760.000000 -464.000000 1520.000000
760.000000 -464.000000 -976.000000
-520.000000 -464.000000 -976.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
151.505249 -447.999969 1511.111938
42.638153 -448.000000 1510.510010
149.537369 -447.999969 1495.077393
44.032768 -320.000000 1494.570801
149.537369 -320.000000 1495.077393
44.032768 -448.000000 1494.570801
42.638153 -320.000000 1510.510010
151.505249 -320.000000 1511.111938
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
-519.111084 -447.999969 919.506104
-518.509705 -448.000000 810.637878
-503.076233 -447.999969 917.537842
-502.570618 -320.000000 812.032471
-503.076233 -320.000000 917.537842
-502.570618 -448.000000 812.032471
-518.509705 -320.000000 810.637878
-519.111084 -320.000000 919.506104
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
743.111084 -447.999969 840.493774
742.509216 -448.000000 949.361694
727.076050 -447.999969 842.461609
726.570007 -320.000000 947.967285
727.076050 -320.000000 842.461609
726.570007 -448.000000 947.967285
742.509216 -320.000000 949.361694
743.111084 -320.000000 840.493774
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
-203.308640 -448.000031 844.444458
-189.234512 -448.000000 777.777649
-187.506165 -448.000031 847.802490
-174.024658 -320.000000 784.098694
-187.506165 -320.000000 847.802490
-174.024658 -448.000000 784.098694
-189.234512 -320.000000 777.777649
-203.308640 -320.000000 844.444458
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-189.234512 -448.000000 777.777649
-165.777679 -448.000031 719.999878
-174.024658 -448.000000 784.098694
-151.555450 -320.000000 728.888733
-174.024658 -320.000000 784.098694
-151.555450 -448.000031 728.888733
-165.777679 -320.000000 719.999878
-189.234512 -320.000000 777.777649
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-165.777679 -448.000031 719.999878
-132.938110 -448.000000 671.110962
-151.555450 -448.000031 728.888733
-120.098610 -320.000000 682.172729
-151.555450 -320.000000 728.888733
-120.098610 -448.000000 682.172729
-132.938110 -320.000000 671.110962
-165.777679 -320.000000 719.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-132.938110 -448.000000 671.110962
-90.715836 -447.999939 631.110901
-120.098618 -448.000000 682.172729
-79.654121 -320.000000 643.950317
-120.098618 -320.000000 682.172729
-79.654121 -447.999939 643.950317
-90.715836 -320.000000 631.110901
-132.938110 -320.000000 671.110962
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-90.715828 -447.999939 631.110901
-39.110870 -448.000031 599.999756
-79.654114 -447.999939 643.950317
-30.222008 -320.000000 614.222046
-79.654114 -320.000000 643.950317
-30.222008 -448.000031 614.222046
-39.110870 -320.000000 599.999756
-90.715828 -320.000000 631.110901
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-39.110870 -448.000031 599.999756
21.876808 -448.000000 577.777527
-30.222008 -448.000031 614.222046
28.197777 -320.000000 592.987366
-30.222008 -320.000000 614.222046
28.197777 -448.000000 592.987366
21.876808 -320.000000 577.777527
-39.110870 -320.000000 599.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
21.876808 -448.000000 577.777527
92.247078 -447.999969 564.444275
28.197777 -448.000000 592.987366
95.605064 -320.000000 580.246704
28.197777 -320.000000 592.987366
95.605064 -447.999969 580.246704
92.247078 -320.000000 564.444275
21.876808 -320.000000 577.777527
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
92.247078 -447.999969 564.444275
146.182877 -448.000000 564.701660
94.215034 -447.999969 580.479065
144.788376 -320.000000 580.640625
94.215034 -320.000000 580.479065
144.788376 -448.000000 580.640625
146.182877 -320.000000 564.701660
92.247078 -320.000000 564.444275
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
147.555756 -448.000031 564.691895
214.222504 -448.000000 578.766052
144.197693 -448.000031 580.494324
207.901474 -320.000000 593.975830
144.197693 -320.000000 580.494324
207.901474 -448.000000 593.975830
214.222504 -320.000000 578.766052
147.555756 -320.000000 564.691895
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
214.222504 -448.000000 578.766052
272.000305 -448.000031 602.222900
207.901474 -448.000000 593.975830
263.111389 -320.000000 616.444946
207.901474 -320.000000 593.975830
263.111389 -448.000031 616.444946
272.000305 -320.000000 602.222900
214.222504 -320.000000 578.766052
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
272.000305 -448.000031 602.222900
320.889160 -448.000000 635.062256
263.111389 -448.000031 616.444946
309.827423 -320.000000 647.901672
263.111389 -320.000000 616.444946
309.827423 -448.000000 647.901672
320.889160 -320.000000 635.062256
272.000305 -320.000000 602.222900
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
320.889160 -448.000000 635.062256
360.889099 -447.999939 677.284302
309.827423 -448.000000 647.901672
348.049591 -320.000000 688.346008
309.827423 -320.000000 647.901672
348.049591 -447.999939 688.346008
360.889099 -320.000000 677.284302
320.889160 -320.000000 635.062256
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
360.889099 -447.999939 677.284302
392.000214 -448.000031 728.889282
348.049591 -447.999939 688.346008
377.777954 -320.000000 737.778137
348.049591 -320.000000 688.346008
377.777954 -448.000031 737.778137
392.000214 -320.000000 728.889282
360.889099 -320.000000 677.284302
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
392.000214 -448.000031 728.889282
414.222382 -448.000000 789.876831
377.777954 -448.000031 737.778137
399.012512 -320.000000 796.197754
377.777954 -320.000000 737.778137
399.012512 -448.000000 796.197754
414.222382 -320.000000 789.876831
392.000214 -320.000000 728.889282
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
414.222382 -448.000000 789.876831
427.555634 -447.999969 860.246948
399.012512 -448.000000 796.197754
411.753113 -320.000000 863.604980
399.012512 -320.000000 796.197754
411.753113 -447.999969 863.604980
427.555634 -320.000000 860.246948
414.222382 -320.000000 789.876831
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
427.555634 -447.999969 860.246948
427.298157 -448.000000 914.182678
411.520569 -447.999969 862.214722
411.359100 -320.000000 912.788269
411.520569 -320.000000 862.214722
411.359100 -448.000000 912.788269
427.298157 -320.000000 914.182678
427.555634 -320.000000 860.246948
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
427.308716 -448.000031 915.555603
413.234650 -448.000000 982.222168
411.506378 -448.000031 912.197571
398.024872 -320.000000 975.901245
411.506378 -320.000000 912.197571
398.024872 -448.000000 975.901245
413.234650 -320.000000 982.222168
427.308716 -320.000000 915.555603
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
413.234650 -448.000000 982.222168
389.777863 -448.000031 1040.000000
398.024872 -448.000000 975.901245
375.555725 -320.000000 1031.111084
398.024872 -320.000000 975.901245
375.555725 -448.000031 1031.111084
389.777863 -320.000000 1040.000000
413.234650 -320.000000 982.222168
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
389.777863 -448.000031 1040.000000
356.938293 -448.000000 1088.888916
375.555725 -448.000031 1031.111084
344.098938 -320.000000 1077.827148
375.555725 -320.000000 1031.111084
344.098938 -448.000000 1077.827148
356.938293 -320.000000 1088.888916
389.777863 -320.000000 1040.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
356.938293 -448.000000 1088.888916
314.716064 -447.999939 1128.888916
344.098938 -448.000000 1077.827148
303.654419 -320.000000 1116.049316
344.098938 -320.000000 1077.827148
303.654419 -447.999939 1116.049316
314.716064 -320.000000 1128.888916
356.938293 -320.000000 1088.888916
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
314.716064 -447.999939 1128.888916
263.111176 -448.000031 1160.000000
303.654419 -447.999939 1116.049316
254.222351 -320.000000 1145.777832
303.654419 -320.000000 1116.049316
254.222351 -448.000031 1145.777832
263.111176 -320.000000 1160.000000
314.716064 -320.000000 1128.888916
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
263.111176 -448.000031 1160.000000
202.123444 -448.000000 1182.222290
254.222351 -448.000031 1145.777832
195.802490 -320.000000 1167.012451
254.222351 -320.000000 1145.777832
195.802490 -448.000000 1167.012451
202.123444 -320.000000 1182.222290
263.111176 -320.000000 1160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
202.123444 -448.000000 1182.222290
131.753082 -447.999969 1195.555420
195.802490 -448.000000 1167.012451
128.395096 -320.000000 1179.753052
195.802490 -320.000000 1167.012451
128.395096 -447.999969 1179.753052
131.753082 -320.000000 1195.555420
202.123444 -320.000000 1182.222290
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
131.753082 -447.999969 1195.555420
77.817184 -448.000000 1195.298096
129.785141 -447.999969 1179.520264
79.211670 -320.000000 1179.359009
129.785141 -320.000000 1179.520264
79.211670 -448.000000 1179.359009
77.817184 -320.000000 1195.298096
131.753082 -320.000000 1195.555420
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
76.444443 -448.000031 1195.308716
9.777767 -448.000000 1181.234619
79.802475 -448.000031 1179.506226
16.098753 -320.000000 1166.024658
79.802475 -320.000000 1179.506226
16.098753 -448.000000 1166.024658
9.777767 -320.000000 1181.234619
76.444443 -320.000000 1195.308716
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
9.777767 -448.000000 1181.234619
-47.999996 -448.000031 1157.777832
16.098753 -448.000000 1166.024658
-39.111111 -320.000000 1143.555664
16.098753 -320.000000 1166.024658
-39.111111 -448.000031 1143.555664
-47.999996 -320.000000 1157.777832
9.777767 -320.000000 1181.234619
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-47.999996 -448.000031 1157.777832
-96.888893 -448.000000 1124.938354
-39.111111 -448.000031 1143.555664
-85.827164 -320.000000 1112.098755
-39.111111 -320.000000 1143.555664
-85.827164 -448.000000 1112.098755
-96.888893 -320.000000 1124.938354
-47.999996 -320.000000 1157.777832
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-96.888893 -448.000000 1124.938354
-136.888901 -447.999939 1082.715942
-85.827164 -448.000000 1112.098755
-124.049385 -320.000000 1071.654175
-85.827164 -320.000000 1112.098755
-124.049385 -447.999939 1071.654175
-136.888901 -320.000000 1082.715942
-96.888893 -320.000000 1124.938354
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-136.888901 -447.999939 1082.715942
-168.000031 -448.000031 1031.111084
-124.049385 -447.999939 1071.654175
-153.777786 -320.000000 1022.222229
-124.049385 -320.000000 1071.654175
-153.777786 -448.000031 1022.222229
-168.000031 -320.000000 1031.111084
-136.888901 -320.000000 1082.715942
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-168.000031 -448.000031 1031.111084
-190.222275 -448.000000 970.123413
-153.777786 -448.000031 1022.222229
-175.012390 -320.000000 963.802368
-153.777786 -320.000000 1022.222229
-175.012390 -448.000000 963.802368
-190.222275 -320.000000 970.123413
-168.000031 -320.000000 1031.111084
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-190.222275 -448.000000 970.123413
-203.555542 -447.999969 899.753052
-175.012390 -448.000000 963.802368
-187.753067 -320.000000 896.395020
-175.012390 -320.000000 963.802368
-187.753067 -447.999969 896.395020
-203.555542 -320.000000 899.753052
-190.222275 -320.000000 970.123413
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-203.555542 -447.999969 899.753052
-203.298203 -448.000000 845.817078
-187.520615 -447.999969 897.784912
-187.359070 -320.000000 847.211548
-187.520615 -320.000000 897.784912
-187.359070 -448.000000 847.211548
-203.298203 -320.000000 845.817078
-203.555542 -320.000000 899.753052
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-502.814850 -448.000031 -264.246918
-475.259277 -448.000000 -133.876541
-518.617310 -448.000031 -260.888885
-490.469147 -320.000000 -127.555542
-518.617310 -320.000000 -260.888885
-490.469147 -448.000000 -127.555542
-475.259277 -320.000000 -133.876541
-502.814850 -320.000000 -264.246918
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
-475.259277 -448.000000 -133.876541
-429.333344 -448.000031 -20.888908
-490.469147 -448.000000 -127.555542
-443.555573 -320.000000 -12.000023
-490.469147 -320.000000 -127.555542
-443.555573 -448.000031 -12.000023
-429.333344 -320.000000 -20.888908
-475.259277 -320.000000 -133.876541
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-429.333344 -448.000031 -20.888908
-365.037048 -448.000000 74.716049
-443.555573 -448.000031 -12.000023
-377.876526 -320.000000 85.777779
-443.555573 -320.000000 -12.000023
-377.876526 -448.000000 85.777779
-365.037048 -320.000000 74.716049
-429.333344 -320.000000 -20.888908
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
-365.037048 -448.000000 74.716049
-282.370361 -447.999939 152.938324
-377.876526 -448.000000 85.777779
-293.432068 -320.000000 165.777817
-377.876526 -320.000000 85.777779
-293.432068 -447.999939 165.777817
-282.370361 -320.000000 152.938324
-365.037048 -320.000000 74.716049
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
-282.370361 -447.999939 152.938324
-181.333328 -448.000031 213.777802
-293.432068 -447.999939 165.777832
-190.222229 -320.000000 228.000031
-293.432068 -320.000000 165.777832
-190.222229 -448.000031 228.000031
-181.333328 -320.000000 213.777802
-282.370361 -320.000000 152.938324
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
-181.333328 -448.000031 213.777802
-58.232155 -448.000000 258.769745
-190.222244 -448.000031 228.000092
-64.553062 -320.000000 273.979675
-190.222244 -320.000000 228.000092
-64.553062 -448.000000 273.979675
-58.232155 -320.000000 258.769745
-181.333328 -320.000000 213.777802
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
299.042267 -448.000000 259.864441
423.111084 -448.000031 209.333313
305.363281 -448.000000 275.074310
432.000000 -320.000000 223.555542
305.363281 -320.000000 275.074310
432.000000 -448.000031 223.555542
423.111084 -320.000000 209.333313
299.042267 -320.000000 259.864441
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
423.111084 -448.000031 209.333313
518.716064 -448.000000 145.037033
432.000000 -448.000031 223.555542
529.777832 -320.000000 157.876526
432.000000 -320.000000 223.555542
529.777832 -448.000000 157.876526
518.716064 -320.000000 145.037033
423.111084 -320.000000 209.333313
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
518.716064 -448.000000 145.037048
596.938232 -447.999939 62.370369
529.777832 -448.000000 157.876556
609.777832 -320.000000 73.432091
529.777832 -320.000000 157.876556
609.777832 -447.999939 73.432091
596.938232 -320.000000 62.370369
518.716064 -320.000000 145.037048
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
596.938232 -447.999939 62.370361
657.777771 -448.000031 -38.666702
609.777832 -447.999939 73.432083
672.000061 -320.000000 -29.777802
609.777832 -320.000000 73.432083
672.000061 -448.000031 -29.777802
657.777771 -320.000000 -38.666702
596.938232 -320.000000 62.370361
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
657.777771 -448.000031 -38.666702
701.234619 -448.000000 -158.074158
672.000061 -448.000031 -29.777802
716.444519 -320.000000 -151.753189
672.000061 -320.000000 -29.777802
716.444519 -448.000000 -151.753189
701.234619 -320.000000 -158.074158
657.777771 -320.000000 -38.666702
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
701.234619 -448.000000 -158.074158
727.308594 -447.999969 -295.851776
716.444519 -448.000000 -151.753189
743.111084 -320.000000 -292.493805
716.444519 -320.000000 -151.753189
743.111084 -447.999969 -292.493805
727.308594 -320.000000 -295.851776
701.234619 -320.000000 -158.074158
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
727.308594 -447.999969 -295.851776
726.890015 -448.000000 -400.361267
743.343872 -447.999969 -293.883911
742.829102 -320.000000 -401.755768
743.343872 -320.000000 -293.883911
742.829102 -448.000000 -401.755768
726.890015 -320.000000 -400.361267
727.308594 -320.000000 -295.851776
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
726.814758 -448.000031 -399.753174
699.259216 -448.000000 -530.123535
742.617188 -448.000031 -403.111206
714.469116 -320.000000 -536.444519
742.617188 -320.000000 -403.111206
714.469116 -448.000000 -536.444519
699.259216 -320.000000 -530.123535
726.814758 -320.000000 -399.753174
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
699.259216 -448.000000 -530.123535
653.333313 -448.000031 -643.111206
714.469116 -448.000000 -536.444519
667.555542 -320.000000 -652.000122
714.469116 -320.000000 -536.444519
667.555542 -448.000031 -652.000122
653.333313 -320.000000 -643.111206
699.259216 -320.000000 -530.123535
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
653.333313 -448.000031 -643.111206
589.036987 -448.000000 -738.716064
667.555542 -448.000031 -652.000122
601.876465 -320.000000 -749.777832
667.555542 -320.000000 -652.000122
601.876465 -448.000000 -749.777832
589.036987 -320.000000 -738.716064
653.333313 -320.000000 -643.111206
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
589.036987 -448.000000 -738.716064
506.370300 -447.999939 -816.938232
601.876465 -448.000000 -749.777832
517.432007 -320.000000 -829.777771
601.876465 -320.000000 -749.777832
517.432007 -447.999939 -829.777771
506.370300 -320.000000 -816.938232
589.036987 -320.000000 -738.716064
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
506.370300 -447.999939 -816.938232
405.333313 -448.000031 -877.777832
517.432007 -447.999939 -829.777771
414.222198 -320.000000 -892.000122
517.432007 -320.000000 -829.777771
414.222198 -448.000031 -892.000122
405.333313 -320.000000 -877.777832
506.370300 -320.000000 -816.938232
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
405.333313 -448.000031 -877.777832
285.925812 -448.000000 -921.234680
414.222198 -448.000031 -892.000122
292.246796 -320.000000 -936.444580
414.222198 -320.000000 -892.000122
292.246796 -448.000000 -936.444580
285.925812 -320.000000 -921.234680
405.333313 -320.000000 -877.777832
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
285.925812 -448.000000 -921.234680
148.148132 -447.999969 -947.308594
292.246796 -448.000000 -936.444580
151.506149 -320.000000 -963.111084
292.246796 -320.000000 -936.444580
151.506149 -447.999969 -963.111084
148.148132 -320.000000 -947.308594
285.925812 -320.000000 -921.234680
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
148.148132 -447.999969 -947.308594
43.638763 -448.000000 -946.889893
150.116074 -447.999969 -963.343750
42.244278 -320.000000 -962.828857
150.116074 -320.000000 -963.343750
42.244278 -448.000000 -962.828857
43.638763 -320.000000 -946.889893
148.148132 -320.000000 -947.308594
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
44.246872 -448.000031 -946.814819
-86.123505 -448.000000 -919.259338
40.888847 -448.000031 -962.617310
-92.444504 -320.000000 -934.469177
40.888847 -320.000000 -962.617310
-92.444504 -448.000000 -934.469177
-86.123505 -320.000000 -919.259338
44.246872 -320.000000 -946.814819
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
-86.123505 -448.000000 -919.259338
-199.111130 -448.000031 -873.333374
-92.444504 -448.000000 -934.469177
-208.000031 -320.000000 -887.555603
-92.444504 -320.000000 -934.469177
-208.000031 -448.000031 -887.555603
-199.111130 -320.000000 -873.333374
-86.123505 -320.000000 -919.259338
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-199.111130 -448.000031 -873.333374
-294.716095 -448.000000 -809.037048
-208.000031 -448.000031 -887.555603
-305.777802 -320.000000 -821.876587
-208.000031 -320.000000 -887.555603
-305.777802 -448.000000 -821.876587
-294.716095 -320.000000 -809.037048
-199.111130 -320.000000 -873.333374
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
-294.716095 -448.000000 -809.037048
-372.938324 -447.999939 -726.370300
-305.777802 -448.000000 -821.876587
-385.777802 -320.000000 -737.432068
-305.777802 -320.000000 -821.876587
-385.777802 -447.999939 -737.432068
-372.938324 -320.000000 -726.370300
-294.716095 -320.000000 -809.037048
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-372.938324 -447.999939 -726.370300
-433.777802 -448.000031 -625.333374
-385.777802 -447.999939 -737.432068
-448.000061 -320.000000 -634.222290
-385.777802 -320.000000 -737.432068
-448.000061 -448.000031 -634.222290
-433.777802 -320.000000 -625.333374
-372.938324 -320.000000 -726.370300
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-433.777802 -448.000031 -625.333374
-477.234680 -448.000000 -505.925842
-448.000061 -448.000031 -634.222290
-492.444550 -320.000000 -512.246826
-448.000061 -320.000000 -634.222290
-492.444550 -448.000000 -512.246826
-477.234680 -320.000000 -505.925842
-433.777802 -320.000000 -625.333374
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
-477.234680 -448.000000 -505.925842
-503.308624 -447.999969 -368.148132
-492.444550 -448.000000 -512.246826
-519.111084 -320.000000 -371.506134
-492.444550 -320.000000 -512.246826
-519.111084 -447.999969 -371.506134
-503.308624 -320.000000 -368.148132
-477.234680 -320.000000 -505.925842
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
-503.308624 -447.999969 -368.148132
-502.889862 -448.000000 -263.638702
-519.343689 -447.999969 -370.115936
-518.829102 -320.000000 -262.244171
-519.343689 -320.000000 -370.115936
-518.829102 -448.000000 -262.244171
-502.889862 -320.000000 -263.638702
-503.308624 -320.000000 -368.148132
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-187.506180 -448.000031 -299.802490
-174.024704 -448.000000 -236.098785
-203.308655 -448.000031 -296.444458
-189.234573 -320.000000 -229.777771
-203.308655 -320.000000 -296.444458
-189.234573 -448.000000 -229.777771
-174.024704 -320.000000 -236.098785
-187.506180 -320.000000 -299.802490
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-174.024704 -448.000000 -236.098785
-151.555542 -448.000031 -180.888947
-189.234573 -448.000000 -229.777771
-165.777786 -320.000000 -172.000031
-189.234573 -320.000000 -229.777771
-165.777786 -448.000031 -172.000031
-151.555542 -320.000000 -180.888947
-174.024704 -320.000000 -236.098785
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-151.555542 -448.000031 -180.888947
-120.098763 -448.000000 -134.172882
-165.777786 -448.000031 -172.000031
-132.938278 -320.000000 -123.111115
-165.777786 -320.000000 -172.000031
-132.938278 -448.000000 -123.111115
-120.098763 -320.000000 -134.172882
-151.555542 -320.000000 -180.888947
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-120.098763 -448.000000 -134.172882
-79.654312 -447.999939 -95.950645
-132.938278 -448.000000 -123.111115
-90.716042 -320.000000 -83.111092
-132.938278 -320.000000 -123.111115
-90.716042 -447.999939 -83.111092
-79.654312 -320.000000 -95.950645
-120.098763 -320.000000 -134.172882
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-79.654312 -447.999939 -95.950645
-30.222214 -448.000031 -66.222275
-90.716042 -447.999939 -83.111092
-39.111099 -320.000000 -51.999996
-90.716042 -320.000000 -83.111092
-39.111099 -448.000031 -51.999996
-30.222214 -320.000000 -66.222275
-79.654312 -320.000000 -95.950645
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-30.222214 -448.000031 -66.222275
28.197571 -448.000000 -44.987659
-39.111099 -448.000031 -51.999996
21.876595 -320.000000 -29.777723
-39.111099 -320.000000 -51.999996
21.876595 -448.000000 -29.777723
28.197571 -320.000000 -44.987659
-30.222214 -320.000000 -66.222275
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
28.197571 -448.000000 -44.987659
95.604919 -447.999969 -32.246971
21.876595 -448.000000 -29.777723
92.246902 -320.000000 -16.444443
21.876595 -320.000000 -29.777723
92.246902 -447.999969 -16.444443
95.604919 -320.000000 -32.246971
28.197571 -320.000000 -44.987659
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
95.604919 -447.999969 -32.246971
144.186005 -448.000000 -32.234116
93.636971 -447.999969 -16.211895
145.580505 -320.000000 -16.294941
93.636971 -320.000000 -16.211895
145.580505 -448.000000 -16.294941
144.186005 -320.000000 -32.234116
95.604919 -320.000000 -32.246971
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
144.197540 -448.000031 -32.493881
207.901230 -448.000000 -45.975365
147.555557 -448.000031 -16.691360
214.222244 -320.000000 -30.765432
147.555557 -320.000000 -16.691360
214.222244 -448.000000 -30.765432
207.901230 -320.000000 -45.975365
144.197540 -320.000000 -32.493881
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
207.901230 -448.000000 -45.975365
263.111084 -448.000031 -68.444504
214.222244 -448.000000 -30.765432
272.000000 -320.000000 -54.222229
214.222244 -320.000000 -30.765432
272.000000 -448.000031 -54.222229
263.111084 -320.000000 -68.444504
207.901230 -320.000000 -45.975365
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
263.111084 -448.000031 -68.444504
309.827148 -448.000000 -99.901283
272.000000 -448.000031 -54.222229
320.888916 -320.000000 -87.061729
272.000000 -320.000000 -54.222229
320.888916 -448.000000 -87.061729
309.827148 -320.000000 -99.901283
263.111084 -320.000000 -68.444504
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
309.827148 -448.000000 -99.901283
348.049316 -447.999939 -140.345703
320.888916 -448.000000 -87.061729
360.888885 -320.000000 -129.283966
320.888916 -320.000000 -87.061729
360.888885 -447.999939 -129.283966
348.049316 -320.000000 -140.345703
309.827148 -320.000000 -99.901283
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
348.049316 -447.999939 -140.345703
377.777740 -448.000031 -189.777832
360.888885 -447.999939 -129.283966
392.000031 -320.000000 -180.888916
360.888885 -320.000000 -129.283966
392.000031 -448.000031 -180.888916
377.777740 -320.000000 -189.777832
348.049316 -320.000000 -140.345703
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
377.777740 -448.000031 -189.777832
399.012329 -448.000000 -248.197571
392.000031 -448.000031 -180.888916
414.222290 -320.000000 -241.876587
392.000031 -320.000000 -180.888916
414.222290 -448.000000 -241.876587
399.012329 -320.000000 -248.197571
377.777740 -320.000000 -189.777832
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
399.012329 -448.000000 -248.197571
411.753021 -447.999969 -315.604950
414.222290 -448.000000 -241.876587
427.555542 -320.000000 -312.246887
414.222290 -320.000000 -241.876587
427.555542 -447.999969 -312.246887
411.753021 -320.000000 -315.604950
399.012329 -320.000000 -248.197571
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
411.753021 -447.999969 -315.604950
411.765900 -448.000000 -364.185974
427.788086 -447.999969 -313.636902
427.705078 -320.000000 -365.580475
427.788086 -320.000000 -313.636902
427.705078 -448.000000 -365.580475
411.765900 -320.000000 -364.185974
411.753021 -320.000000 -315.604950
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
411.506104 -448.000031 -364.197540
398.024597 -448.000000 -427.901306
427.308655 -448.000031 -367.555603
413.234528 -320.000000 -434.222290
427.308655 -320.000000 -367.555603
413.234528 -448.000000 -434.222290
398.024597 -320.000000 -427.901306
411.506104 -320.000000 -364.197540
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
398.024597 -448.000000 -427.901306
375.555420 -448.000031 -483.111237
413.234528 -448.000000 -434.222290
389.777710 -320.000000 -492.000153
413.234528 -320.000000 -434.222290
389.777710 -448.000031 -492.000153
375.555420 -320.000000 -483.111237
398.024597 -320.000000 -427.901306
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
375.555420 -448.000031 -483.111237
344.098602 -448.000000 -529.827271
389.777710 -448.000031 -492.000153
356.938110 -320.000000 -540.889099
389.777710 -320.000000 -492.000153
356.938110 -448.000000 -540.889099
344.098602 -320.000000 -529.827271
375.555420 -320.000000 -483.111237
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
344.098602 -448.000000 -529.827271
303.654083 -447.999939 -568.049500
356.938110 -448.000000 -540.889099
314.715851 -320.000000 -580.889038
356.938110 -320.000000 -540.889099
314.715851 -447.999939 -580.889038
303.654083 -320.000000 -568.049500
344.098602 -320.000000 -529.827271
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
303.654083 -447.999939 -568.049500
254.222046 -448.000031 -597.778015
314.715851 -447.999939 -580.889038
263.110901 -320.000000 -612.000244
314.715851 -320.000000 -580.889038
263.110901 -448.000031 -612.000244
254.222046 -320.000000 -597.778015
303.654083 -320.000000 -568.049500
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
254.222046 -448.000031 -597.778015
195.802246 -448.000000 -619.012573
263.110901 -448.000031 -612.000244
202.123230 -320.000000 -634.222473
263.110901 -320.000000 -612.000244
202.123230 -448.000000 -634.222473
195.802246 -320.000000 -619.012573
254.222046 -320.000000 -597.778015
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
195.802246 -448.000000 -619.012573
128.394958 -447.999969 -631.753174
202.123230 -448.000000 -634.222473
131.752960 -320.000000 -647.555603
202.123230 -320.000000 -634.222473
131.752960 -447.999969 -647.555603
128.394958 -320.000000 -631.753174
195.802246 -320.000000 -619.012573
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
128.394958 -447.999969 -631.753174
78.817863 -448.000000 -631.678833
130.362915 -447.999969 -647.788147
77.423332 -320.000000 -647.617920
130.362915 -320.000000 -647.788147
77.423332 -448.000000 -647.617920
78.817863 -320.000000 -631.678833
128.394958 -320.000000 -631.753174
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
79.802597 -448.000031 -631.506287
16.098944 -448.000000 -618.024902
76.444595 -448.000031 -647.308838
9.777988 -320.000000 -633.234802
76.444595 -320.000000 -647.308838
9.777988 -448.000000 -633.234802
16.098944 -320.000000 -618.024902
79.802597 -320.000000 -631.506287
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
16.098944 -448.000000 -618.024902
-39.110905 -448.000031 -595.555786
9.777988 -448.000000 -633.234802
-47.999767 -320.000000 -609.778137
9.777988 -320.000000 -633.234802
-47.999767 -448.000031 -609.778137
-39.110905 -320.000000 -595.555786
16.098944 -320.000000 -618.024902
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-39.110905 -448.000031 -595.555786
-85.826973 -448.000000 -564.098938
-47.999767 -448.000031 -609.778137
-96.888687 -320.000000 -576.938477
-47.999767 -320.000000 -609.778137
-96.888687 -448.000000 -576.938477
-85.826973 -320.000000 -564.098938
-39.110905 -320.000000 -595.555786
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-85.826973 -448.000000 -564.098938
-124.049232 -447.999939 -523.654419
-96.888687 -448.000000 -576.938477
-136.888733 -320.000000 -534.716187
-96.888687 -320.000000 -576.938477
-136.888733 -447.999939 -534.716187
-124.049232 -320.000000 -523.654419
-85.826973 -320.000000 -564.098938
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-124.049232 -447.999939 -523.654419
-153.777679 -448.000031 -474.222351
-136.888733 -447.999939 -534.716187
-167.999908 -320.000000 -483.111298
-136.888733 -320.000000 -534.716187
-167.999908 -448.000031 -483.111298
-153.777679 -320.000000 -474.222351
-124.049232 -320.000000 -523.654419
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-153.777679 -448.000031 -474.222351
-175.012344 -448.000000 -415.802490
-167.999908 -448.000031 -483.111298
-190.222229 -320.000000 -422.123505
-167.999908 -320.000000 -483.111298
-190.222229 -448.000000 -422.123505
-175.012344 -320.000000 -415.802490
-153.777679 -320.000000 -474.222351
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-175.012344 -448.000000 -415.802490
-187.753052 -447.999969 -348.395050
-190.222229 -448.000000 -422.123505
-203.555527 -320.000000 -351.753113
-190.222229 -320.000000 -422.123505
-203.555527 -447.999969 -351.753113
-187.753052 -320.000000 -348.395050
-175.012344 -320.000000 -415.802490
faces
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 0 1 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 7 0 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-187.753052 -447.999969 -348.395050
-187.765900 -448.000000 -299.814148
-203.788010 -447.999969 -350.363098
-203.705032 -320.000000 -298.419617
-203.788010 -320.000000 -350.363098
-203.705032 -448.000000 -298.419617
-187.765900 -320.000000 -299.814148
-187.753052 -320.000000 -348.395050
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-60.000000 -320.000000 282.000000
300.000000 -320.000000 282.000000
300.000000 -320.000000 266.000000
-60.000000 -320.000000 266.000000
-60.000000 -448.000000 282.000000
300.000000 -448.000000 282.000000
300.000000 -448.000000 266.000000
-60.000000 -448.000000 266.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
240.000000 1616.000000 448.000000
368.000000 1616.000000 448.000000
368.000000 1616.000000 432.000000
240.000000 1616.000000 432.000000
240.000000 -112.000000 448.000000
368.000000 -112.000000 448.000000
368.000000 -112.000000 432.000000
240.000000 -112.000000 432.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip
brush
vertices
240.000000 1616.000000 304.000000
368.000000 1616.000000 304.000000
368.000000 1616.000000 288.000000
240.000000 1616.000000 288.000000
240.000000 -112.000000 304.000000
368.000000 -112.000000 304.000000
368.000000 -112.000000 288.000000
240.000000 -112.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip
brush
vertices
368.000000 1616.000000 448.000000
384.000000 1616.000000 448.000000
384.000000 1616.000000 288.000000
368.000000 1616.000000 288.000000
368.000000 48.000000 448.000000
384.000000 48.000000 448.000000
384.000000 48.000000 288.000000
368.000000 48.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip
brush
vertices
224.000000 1616.000000 448.000000
240.000000 1616.000000 448.000000
240.000000 1616.000000 288.000000
224.000000 1616.000000 288.000000
224.000000 -112.000000 448.000000
240.000000 -112.000000 448.000000
240.000000 -112.000000 288.000000
224.000000 -112.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip
brush
vertices
240.000000 528.000000 352.000000
319.425629 -112.000000 342.430725
302.353821 -112.000000 388.000000
295.425629 -112.000000 384.000000
326.353821 -112.000000 346.430725
264.000000 528.000000 310.430756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 5 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 304.000000 1536.000000 368.000000
Vector3 angles -90.000000 0.000000 0.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 120.000000 -448.000000 880.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 120.000000 -448.000000 -332.000000
Vector3 angles -360.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
9503f588766a5e0e288e62d25f9c31fc41598229 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH18/EX18.7/example7_sce.sce | 4542c20630f3e1d55fc08b86f3d6e87f6ce5ec90 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 237 | sce | example7_sce.sce | //chapter 18
//example 18.7
//page 7
printf("\n")
printf("given")
Isc=100*10^-3;Vr10=.5;Vo=12;
R10=Vr10/Isc
R10=4.7;//use standard value
Il=200*10^-3;
Vr10=Il*R10
Vr11=Vr10-.5
I11=1*10^-3;
R11=Vr11/I11
R12=(Vo+Vr10-Vr11)/I11 |
c4eac1c08b9fefc152c86c39256d968e4f291570 | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/allpasslp2mb/allpasslp2mb.sci | 149a63d7b4429ae02e7f09b0e691e3e2e3c2b485 | [] | no_license | shreniknambiar/FOSSEE-DSP-Toolbox | 1f498499c1bb18b626b77ff037905e51eee9b601 | aec8e1cea8d49e75686743bb5b7d814d3ca38801 | refs/heads/master | 2020-12-10T03:28:37.484363 | 2017-06-27T17:47:15 | 2017-06-27T17:47:15 | 95,582,974 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,891 | sci | allpasslp2mb.sci | function [AllpassNum,AllpassDen]= allpasslp2mb (Wo,Wt,varargin)
// Allpass filter for lowpass to M-band transfomation
//
//Calling Sequence:
//[AllpassNum,AllpassDen] = allpasslp2mb(Wo,Wt) returns the numerator, AllpassNum, and the denominator, AllpassDen, of the Mth-order allpass mapping filter for performing a real lowpass to real multipassband frequency transformation. Parameter M is the number of times an original feature is replicated in the target filter. This transformation effectively places one feature of an original filter, located at frequency Wo, at the required target frequency locations, Wt1,...,WtM.
//
//[AllpassNum,AllpassDen] = allpasslp2mb(Wo,Wt,P) allows you to specify an additional parameter, Pass, which chooses between using the "DC Mobility" and the "Nyquist Mobility." In the first case the Nyquist feature stays at its original location and the DC feature is free to move. In the second case the DC feature is kept at an original frequency and the Nyquist feature is movable.
//Input Parameters:
// Wo: Frequency value of the prototype filter
// Wt: Desired Frequencies for the target filter
// P: Choice ('pass'/'stop') of passband/stopband at DC, 'pass' being the default
//Output Parameters:
// AllpassNum: Numerator of mapping filer
// AllpassDen: Denominator of mapping filter
//Example: Design the allpass filter changing the real lowpass filter with the cutoff frequency of Wo=0.5 into a real multiband filter with band edges of Wt=[2:3:8]/10 precisely defined. Plot the phase response normalized to pi, which is in effect the mapping function Wo(Wt)
//
// Wo = 0.5; Wt =[0.2:0.3:0.8];
// [AllpassNum, AllpassDen] = allpasslp2lp(Wo, Wt);
// [h, f] = freqz(AllpassNum, AllpassDen);
// plot(f/%pi,-angle(h)/%pi);
//
//Author: Shrenik Nambiar
//
//References: 1. Franchitti, J.C., "All-pass filter interpolation and frequency transformation problems,"MSc Thesis, Dept. of Electrical and Computer Engineering, University of Colorado, 1985.
// 2. Feyh, G., J.C. Franchitti and C.T. Mullis, "All-pass filter interpolation and frequency transformation problem," Proceedings 20th Asilomar Conference on Signals, Systems and Computers, Pacific Grove, California, pp. 164-168, November 1986.
//
// Input Validation Statements
if argn(2) <2 | argn(2) >3 then
error("Number of input arguments should either 2 or 3");
end
if argn(1) <1 | argn(1)>2 then
error("Number of output arguments should either be 1 or 2");
end
if ~isscalar(Wo) | ~isreal(Wo) then
error("Wo must be real ,numeric and scalar");
end
if Wo<=0 | Wo>=1 then
error("Wo must lie between 0 and 1");
end
if ~isvector(Wt) | ~isreal(Wt) then
error("Wt must be vector and real");
end
for i= 1:length(Wt)
if Wt(i) <=0 | Wt(i) >=1 then
error("Wt must be in normalised form");
end
end
if (length(varargin)==1) & (type(varargin(1))~=10) then
error("Input argument #3 must be of type char");
end
if length(varargin)==0 then
pass= -1; //pass being the default option
else
P=varargin(1);
select P
case 'pass' then
pass=-1;
case 'stop' then
pass=1;
else
error("Invalid option,input should be either pass or stop");
end
end
l=length(Wt);
//Calculating the numerator and denominator for the mapping filter
Wold =%pi * Wo * (-1).^(0:l-1);
Wnew =%pi * Wt(:).';
al=sin(Wnew.'/2 * (l-2:-2:-l) -Wold.'/2*ones(1,l));
AllpassDen =[1 -sin(l*Wnew/2-Wold/2)/al'];
AllpassNum = (flipdim(AllpassDen,2))*pass;
endfunction
|
c2f8ff5849735f19d0a9afd226082fd25e5fa0d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3776/CH8/EX8.7/Ex8_7.sce | 8013fda4eeb7b712e5df0931c5f33341f50fc42e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 657 | sce | Ex8_7.sce | clear
//
e_x = -500 //10-6 m/m The contraction in X direction
e_y = 300 //10-6 m/m The contraction in Y direction
e_xy = -600 //10-6 m/m discorted angle
centre = (e_x + e_y)/2 //10-6 m/m
point_x = -500 //The x coordinate of a point on mohr circle
point_y = 300 //The y coordinate of a point on mohr circle
Radius = 500 //10-6 m/m - from mohr circle
e_1 = Radius +centre //MPa The principal strain
e_2 = -Radius +centre //MPa The principal strain
k = atan(300.0/900) // from geometry
k_1 = (180/%pi)*(k)
printf("\n The principal strains are %0.3f micro m/m %0.3f micro m/m",e_1,e_2)
printf("\n The angle of principal plane %0.2f degrees",k_1)
|
134a10e99507490468c2dceda6bb265b9ca5dfca | 5a05d7e1b331922620afe242e4393f426335f2e3 | /macros/wkeep.sci | 31fda784f453a99453ea83b934da9aea675c859c | [] | no_license | sauravdekhtawala/FOSSEE-Signal-Processing-Toolbox | 2728cf855f58886c7c4a9317cc00784ba8cd8a5b | 91f8045f58b6b96dbaaf2d4400586660b92d461c | refs/heads/master | 2022-04-19T17:33:22.731810 | 2020-04-22T12:17:41 | 2020-04-22T12:17:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,189 | sci | wkeep.sci | // Copyright (C) 2018 - 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:[insert name]
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function y = wkeep(x,l,opt )
// Extracts a vector from the given vector of length l
// Calling Sequence
// [y]=wkeep(x,l)
// [y]=wkeep(x,l,opt)
// Parameters
// x: Real, complex or string type input vector or matrix
// l: Length of matrix required
// opt: Character input to determine which side to extract from
// Description
// This is an Octave function
// [y]=wkeep(x,l) extracts a vector of length l from the centre of input vector x.
// [y]=wkeep(x,l,opt) extracts vector based on opt which could be 'l','r' or 'c' (left, right or central).
// Examples
// 1. [y]=wkeep([1 2 3;4 5 6],[2 2])
// y= 1 2
// 2. [y]=wkeep([1 2 3 4 5 6],3,'r')
// y= 4 5 6
[nargout,nargin]=argn();
if (nargin < 2 | nargin > 3)
error("wrong number of input arguments");
end
if(isvector(x))
if(l > length(x))
error('l must be less than or equal the size of x');
end
if(opt=='c')
s = (length(x)-l)./2;
y = x(1+floor(s):$-ceil(s));
elseif(opt=='l')
y=x(1:l);
elseif(opt=='r')
y = x($-l+1:$);
else
error('opt must be equal to c, l or r');
end
else
if(max(size(l,1),size(l,2)) == 2)
s1 = (max(size(x,1),size(x,2))-l(1))./2;
s2 = (max(size(x,1),size(x,2))-l(2))./2;
else
disp("entered the else" ) ///remove later
error('For a matrix l must be a 1x2 vector');
end
if(nargin==2)
y = x(1+floor(s1):$-ceil(s1),1+floor(s2):$-ceil(s2));
else
if(max(size(opt,1),size(opt,2)) == 2)
firstr=opt(1);
firstc=opt(2);
else
disp("entered the else2") ////remove later
error('For a matrix l must be a 1x2 vector');
end
y=x(firstr:firstr+l(1)-1,firstc:firstc+l(2)-1);
end
end
endfunction
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.