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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4ccf0e09a8c83d47e57b0d702fe5c1d8b63d8241 | f0c12dab6fa4cc838813c3ee6774033f49aa79d2 | /bm4321_assignment_1_150005r_1.sce | 0fe194a186381ff0bf1ce10a2628db1d903c5e24 | [] | no_license | chiranSachintha/Bioinformatics-Genomic-signal-processing | 91adf37bca19f524e1b6ade887d91b6f6d435389 | 9ed446db80629c45cfa1a14154a939112074c08f | refs/heads/master | 2020-08-04T07:01:43.695360 | 2019-10-01T10:29:23 | 2019-10-01T10:29:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 32,614 | sce | bm4321_assignment_1_150005r_1.sce | // BM4321 Genomic Signal Processing
// Name: C.S Abeygunawardana
// Index No: 150005r
// Assignment 1
clc;
clear all;
close();
exec('bm4321_sequence_alignment_func.sce');
exec('bm4321_gene_prom_region.sce');
exec('bm4321_statistical_alignment_new.sce');
[gp,gn,ncp,ncn]= get_protein_pos_array('ProteinTable.txt');
u_row_p = size(gp,1);
u_row_n = size(gn,1);
down_thresh_len = 3; // 3 bases downstream
up_thresh_len = 50; // 50 bases upstream
safety = 3;
y = ascii('WWWW');
prom_len = 4;
// Question 1
good_p = [];
good_n = [];
located_n = [];
located_p = [];
key_s = [];
key_1 = [];
for n_key=1:u_row_p // consider the sense strand
dna_seq = get_fasta_at('sequence.fasta',gp(n_key,1)-up_thresh_len,gp(n_key,1)+down_thresh_len+safety,1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[ax,ay,n] = traceback_local(dna_seq,y,1,-1,gap_penalty);
y_end = n(2)-1; //Smallest y index of maximum
x_end = n(1)-1; //Smallest x index of maximum
if x_end < (up_thresh_len-prom_len+1) then
test_x = dna_seq(x_end+1:x_end+4) //Obtain the promoter
located_p = [located_p,n_key];
key_s = [key_s,x_end+1]
if (((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T')))) then //Consider only the promoters that match WWWW
key_1 = [key_1,x_end+1];
good_p = [good_p,n_key];
disp(ascii(test_x))
end
end
end
end
for n_key=1:u_row_n // consider the anti-sense strand
dna_seq = get_fasta_at('sequence.fasta',gn(n_key,2)-down_thresh_len+1,gn(n_key,2)+up_thresh_len+safety,-1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
dna_seq = dna_seq(:,$:-1:1);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
disp(ascii(dna_seq));
[ax,ay,n] = traceback_local(dna_seq,y,1,-1,gap_penalty);
disp(ascii(dna_seq));
disp(ay);
y_end = n(2)-1; //Smallest y index of maximum
x_end = n(1)-1; //Smallest x index of maximum
if x_end < (up_thresh_len-prom_len+1) then
test_x = dna_seq(x_end+1:x_end+4) //Obtain the promoter
located_n = [located_n,n_key];
key_s = [key_s,x_end+1]
if (((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T')))) then //Consider only the promoters that match WWWW
key_1 = [key_1,x_end+1];
good_n = [good_n,n_key];
end
end
end
end
disp("QUESTION 1 answers");
disp(msprintf('Number of Genes of Sense Strand: %d',(u_row_p)))
disp(msprintf('Number of Genes of Anti-Sense Strand: %d',(u_row_n)))
disp(msprintf('Total Number of Genes: %d',(u_row_p+u_row_n)))
disp("LOCAL ALIGNMENT : INTACT QUERY : m=1");
disp(msprintf('Number of Genes with Potential Promoters: %d',length(key_1)))
//disp(key_s);
key_m = key_1;
key_1 = up_thresh_len-key_1+1;
//disp(key_1);
mean_prom_location = (mean(key_1));
disp(mean_prom_location)
promoter_percentage = length(key_1)/(u_row_p+u_row_n)*100;
disp(msprintf('Percentage of Genes with Potential Promoters: %5.3f%%',promoter_percentage))
figure
histplot(0:up_thresh_len, key_1,normalization=%f, style=16);
title('Distribution of Promoters (Intact Query)','fontsize',5)
xlabel('Upstream Position','fontname','times bold','fontsize',3)
ylabel('Genes count','fontname','times bold','fontsize',3)
// Question 2
key_2 = [];
key_3 = [];
match_len = [];
for n_key=1:u_row_p // consider the sense strand
dna_seq = get_fasta_at('sequence.fasta',gp(n_key,1)-up_thresh_len,gp(n_key,1)+down_thresh_len+safety,1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[ax,ay,n] = traceback_local(dna_seq,y,1,-1,gap_penalty);
//From scoring matrix
y_end = n(2)-1; //Smallest y index of maximum
x_end = n(1)-1; //Smallest x index of maximum
match = 0
if x_end < (up_thresh_len-prom_len+1) then
while (x_end <= (d_len-1)) then //Keep looking for consecutive Ws within the gene starting from the promoter
if (dna_seq(x_end+1)~= ascii('T')&& dna_seq(x_end+1)~= ascii('A')) then
break
else
match = match+1;
end
x_end = x_end+1;
end
if match == length(y) then
key_2 = [key_2,n(1)];
end
if match >= length(y) then
match_len = [match_len,match];
key_3 = [key_3,n(1)];
end
end
end
end
for n_key=1:u_row_n // consider the anti-sense strand
dna_seq = get_fasta_at('sequence.fasta',gn(n_key,2)-down_thresh_len+1,gn(n_key,2)+up_thresh_len+safety,-1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
dna_seq = dna_seq(:,$:-1:1);
d_len = length(dna_seq);
//disp(n_key);
if (d_len==(up_thresh_len+down_thresh_len)) then
//disp(ascii(dna_seq));
[ax,ay,n] = traceback_local(dna_seq,y,1,-1,gap_penalty);
y_end = n(2)-1; //Smallest y index of maximum
x_end = n(1)-1; //Smallest x index of maximum
// Consider only the 50 bases upstream belonging to the coding gene
match = 0
if x_end < (up_thresh_len-prom_len+1) then
while (x_end <= (d_len-1)) then //Keep looking for consecutive Ws within the gene starting from the promoter
if (dna_seq(x_end+1)~= ascii('T')&& dna_seq(x_end+1)~= ascii('A')) then
break
else
match = match+1;
end
x_end = x_end+1;
end
if match == length(y) then
key_2 = [key_2,n(1)];
end
if match >= length(y) then
match_len = [match_len,match];
key_3 = [key_3,n(1)];
end
end
end
end
disp("QUESTION 2");
key_2 = up_thresh_len+down_thresh_len-key_2+1;
key_3 = up_thresh_len+down_thresh_len-key_3+1;
figure
histplot(0:20,match_len,normalization=%f, style=16);
title('Consecutive W s Distribution (Intact Query)','fontsize',5)
xlabel('Number of consecutive W s','fontname','times bold','fontsize',3)
ylabel('Genes count','fontname','times bold','fontsize',3)
disp(msprintf('Maximum number of consecutive Ws (N): %d',max(match_len)))
N = max(match_len);
// Question 3
acc_motif = []; // Rows of sequences each N bases long
count = 1;
negatives = 0;
row_p = length(good_p); // number of genes positive strand
row_n = length(good_n); // number of genes negative strand
disp(msprintf('From sense strand: %d',row_p));
disp(msprintf('From anti sense strand: %d',row_n));
for n=1:row_p // consider the sense strand
n_key = good_p(n);
dna_seq = get_fasta_at('sequence.fasta',gp(n_key,1)-up_thresh_len,gp(n_key,1)+down_thresh_len+safety,1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
key = key_m(count);
if (up_thresh_len-key+1) >= N
dna_row = dna_seq(key:key+N-1);
d_len = length(dna_row);
if d_len == N
save_fasta('promoter.fasta',sprintf('>sequence %i',n_key),dna_row)
acc_motif = [acc_motif; dna_row];
end
else
negatives = negatives +1
end
count = count +1;
end
for n=1:row_n // consider the anti-sense strand
n_key = good_n(n);
dna_seq = get_fasta_at('sequence.fasta',gn(n_key,2)-down_thresh_len+1,gn(n_key,2)+up_thresh_len+safety,-1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
dna_seq = dna_seq(:,$:-1:1);
key = key_m(count);
if (up_thresh_len-key+1) >= N
dna_row = dna_seq(key:key+N-1);
d_len = length(dna_row);
if d_len == N
disp(ascii(dna_row));
save_fasta('promoter.fasta',sprintf('>sequence %i',n_key+u_row_p),dna_row)
acc_motif = [acc_motif; dna_row];
end
else
negatives = negatives +1
end
count = count + 1;
end
// Question 3
disp(msprintf('Number of (N) long sequences from Genes Potential Promoter that belong to motif : %d',size(acc_motif,1)))
disp(msprintf('Number of Genes with Potential Promoters that do not belong to motif : %d',negatives))
ppm = get_ppm(acc_motif);
disp("Position Probability Matrix from Intact:");
disp(ppm);
// Question 4
good_p2 = [];
good_n2 = [];
located_n2 = [];
located_p2 = [];
key_s2 = [];
key_1_2 = [];
promoter_lengths = [];
for n_key=1:u_row_p // consider the sense strand
dna_seq = get_fasta_at('sequence.fasta',gp(n_key,1)-up_thresh_len,gp(n_key,1)+down_thresh_len+safety,1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
d_len = length(dna_seq);
//disp(n_key);
if (d_len==(up_thresh_len+down_thresh_len)) then
disp(ascii(dna_seq));
[ax,ay,n] = traceback_local(dna_seq,y,3,-3,gap_penalty);
disp(ascii(dna_seq));
disp(ay);
// From scoring matrix
y_end = n(2)-1; //Smallest y index of maximum
x_end = n(1)-1; //Smallest x index of maximum
if (length(ay)<=d_len) then
//disp(ascii(dna_seq(x_end+1:length(ay))));
prom_len2 = length(dna_seq(x_end+1:length(ay)));
promoter_lengths = [promoter_lengths,prom_len2];
// Consider only the 50 bases upstream belonging to the coding gene
if (x_end < (up_thresh_len-prom_len2+1)) then
//if length(ay)
test_x = dna_seq(x_end+1:x_end+prom_len2) //Obtain the promoter
located_p2 = [located_p2,n_key];
key_s2 = [key_s2,x_end+1]
if length(test_x)==prom_len then
if (((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T')))) then //Consider only the promoters that match WWWW
key_1_2 = [key_1_2,x_end+1];
good_p2 = [good_p2,n_key];
disp(ascii(test_x))
end
elseif length(test_x)==prom_len+1 then
if ((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T'))))) then //Consider only the promoters that match W-WWW / WW-WW / WWW-W
key_1_2 = [key_1_2,x_end+1];
good_p2 = [good_p2,n_key];
end
elseif length(test_x)==prom_len+2 then
if ((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T'))))) then //Consider only the promoters that match WWW--W / WW-W-W / WW--WW / W-WW-W / W-W-WW / W--WWW
key_1_2 = [key_1_2,x_end+1];
good_p2 = [good_p2,n_key];
disp(ascii(test_x))
end
end
end
end
end
end
for n_key=1:u_row_n // consider the anti-sense strand
dna_seq = get_fasta_at('sequence.fasta',gn(n_key,2)-down_thresh_len+1,gn(n_key,2)+up_thresh_len+safety,-1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
dna_seq = dna_seq(:,$:-1:1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[ax,ay,n] = traceback_local(dna_seq,y,3,-3,gap_penalty);
y_end = n(2)-1; //Smallest y index of maximum
x_end = n(1)-1; //Smallest x index of maximum
if (length(ay)<=d_len) then
prom_len2 = length(dna_seq(x_end+1:length(ay)));
promoter_lengths = [promoter_lengths,prom_len2];
if (x_end < (up_thresh_len-prom_len2+1)) then
//if length(ay)
test_x = dna_seq(x_end+1:x_end+prom_len2) //Obtain the promoter
located_p2 = [located_p2,n_key];
key_s2 = [key_s2,x_end+1]
if length(test_x)==prom_len then
if (((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T')))) then //Consider only the promoters that match WWWW
key_1_2 = [key_1_2,x_end+1];
good_n2 = [good_n2,n_key];
end
elseif length(test_x)==prom_len+1 then
if ((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T'))))) then //Consider only the promoters that match W-WWW / WW-WW / WWW-W
key_1_2 = [key_1_2,x_end+1];
good_n2 = [good_n2,n_key];
end
elseif length(test_x)==prom_len+2 then
if ((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(2)==ascii('A')))|((test_x(2)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(3)==ascii('A')))|((test_x(3)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T')))))|((((test_x(1)==ascii('A')))|((test_x(1)==ascii('T'))))&(((test_x(4)==ascii('A')))|((test_x(4)==ascii('T'))))&(((test_x(5)==ascii('A')))|((test_x(5)==ascii('T'))))&(((test_x(6)==ascii('A')))|((test_x(6)==ascii('T'))))) then //Consider only the promoters that match WWW--W / WW-W-W / WW--WW / W-WW-W / W-W-WW / W--WWW
key_1_2 = [key_1_2,x_end+1];
good_n2 = [good_n2,n_key];
disp(ascii(test_x))
end
end
end
end
end
end
disp(msprintf('Total Number of Genes: %d',(u_row_p+u_row_n)))
disp("LOCAL ALIGNMENT : NON-INTACT QUERY : m=3");
disp(msprintf('Maximum length of promoter in Local Search with Non-Intact-Query: %d',max(promoter_lengths)))
disp(msprintf('Number of Genes with Potential Promoters: %d',length(key_1_2)))
key_m2 = key_1_2;
key_1_2 = up_thresh_len-key_1_2+1;
mean_prom_location2 = (mean(key_1_2));
disp(mean_prom_location2)
promoter_percentage2 = length(key_1_2)/(u_row_p+u_row_n)*100;
disp(msprintf('Percentage of Genes with Potential Promoters: %5.3f%%',promoter_percentage2))
figure
histplot(0:up_thresh_len, key_1_2,normalization=%f, style=16);
title('Distribution of Promoter (Non-Intact Query)','fontsize',4)
xlabel('Upstream Position','fontname','times bold','fontsize',3)
ylabel('Genes count','fontname','times bold','fontsize',3)
key_2 = [];
key_3 = [];
key_4 = [];
match_len2 = [];
for n_key=1:u_row_p // consider the sense strand
dna_seq = get_fasta_at('sequence.fasta',gp(n_key,1)-up_thresh_len,gp(n_key,1)+down_thresh_len+safety,1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[ax,ay,n] = traceback_local(dna_seq,y,3,-3,gap_penalty);
y_end = n(2)-1; //Smallest y index of maximum
x_end = n(1)-1; //Smallest x index of maximum
match = 0
if (length(ay)<=d_len) then
prom_len2 = length(dna_seq(x_end+1:length(ay)));
// Consider only the 50 bases upstream
if (x_end < (up_thresh_len-prom_len2+1)) then
while (x_end <= (d_len-1)) then //Keep looking for consecutive Ws within the gene starting from the promoter upstream
if (dna_seq(x_end+1)~= ascii('T')&& dna_seq(x_end+1)~= ascii('A')) then
break
else
match = match+1;
end
x_end = x_end+1;
end
if match == length(y) then
key_2 = [key_2,n(1)];
end
if match >= length(y) then
match_len2 = [match_len2,match];
key_3 = [key_3,n(1)];
elseif match < length(y) then
match_len2 = [match_len2,match];
key_3 = [key_3,n(1)];
end
end
end
end
end
for n_key=1:u_row_n // consider the anti-sense strand
dna_seq = get_fasta_at('sequence.fasta',gn(n_key,2)-down_thresh_len+1,gn(n_key,2)+up_thresh_len+safety,-1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
dna_seq = dna_seq(:,$:-1:1);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[ax,ay,n] = traceback_local(dna_seq,y,3,-3,gap_penalty);
//From scoring matrix
y_end = n(2)-1; //Smallest y index of maximum
x_end = n(1)-1; //Smallest x index of maximum
// Consider only the 50 bases upstream belonging to the coding gene
match = 0
if x_end < (up_thresh_len-prom_len+1) then
while (x_end <= (d_len-1)) then //Keep looking for consecutive Ws within the gene starting from the promoter
if (dna_seq(x_end+1)~= ascii('T')&& dna_seq(x_end+1)~= ascii('A')) then
break
else
match = match+1;
end
x_end = x_end+1;
end
if match == length(y) then
key_2 = [key_2,n(1)];
end
if match >= length(y) then
match_len2 = [match_len2,match];
key_3 = [key_3,n(1)];
elseif match < length(y) then
match_len2 = [match_len2,match];
key_3 = [key_3,n(1)];
end
end
end
end
key_2 = up_thresh_len+down_thresh_len-key_2+1;
key_3 = up_thresh_len+down_thresh_len-key_3+1;
figure
histplot(0:20,match_len2,normalization=%f, style=16);
title('Consecutive Distribution W s (Non-Intact Query)','fontsize',5)
xlabel('Number of consecutive W s','fontname','times bold','fontsize',3)
ylabel('Genes count','fontname','times bold','fontsize',3)
disp(msprintf('Maximum number of consecutive Ws (N): %d',max(match_len2)))
N = max(match_len2);
acc_motif2 = []; // Rows of sequences each N bases long
count2 = 1;
negatives2 = 0;
row_p2 = length(good_p2); // number of genes positive strand
row_n2 = length(good_n2); // number of genes negative strand
disp(msprintf('From sense strand: %d',row_p2));
disp(msprintf('From anti sense strand: %d',row_n2));
for n=1:row_p2 // consider the sense strand
n_key = good_p2(n);
dna_seq = get_fasta_at('sequence.fasta',gp(n_key,1)-up_thresh_len,gp(n_key,1)+down_thresh_len+safety,1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
key = key_m2(count2);
if (up_thresh_len-key+1) >= N
dna_row = dna_seq(key:key+N-1);
d_len = length(dna_row);
if d_len == N
save_fasta('promoter2.fasta',sprintf('>sequence %i',n_key),dna_row)
acc_motif2 = [acc_motif2; dna_row];
end
else
negatives2 = negatives2 +1
end
count2 = count2 +1;
end
for n=1:row_n2 // consider the anti-sense strand
n_key = good_n2(n);
dna_seq = get_fasta_at('sequence.fasta',gn(n_key,2)-down_thresh_len+1,gn(n_key,2)+up_thresh_len+safety,-1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
dna_seq = dna_seq(:,$:-1:1);
key = key_m2(count2);
if (up_thresh_len-key+1) >= N
dna_row = dna_seq(key:key+N-1);
d_len = length(dna_row);
if d_len == N
save_fasta('promoter2.fasta',sprintf('>sequence %i',n_key+u_row_p),dna_row)
acc_motif2 = [acc_motif2; dna_row];
end
else
negatives2 = negatives2 +1
end
count2 = count2 + 1;
end
disp(msprintf('Number of (N) long sequences from Genes Potential Promoter that belong to motif : %d',size(acc_motif2,1)))
disp(msprintf('Number of Genes with Potential Promoters that do not belong to motif : %d',negatives2))
ppm2 = get_ppm(acc_motif2);
disp("Position Probability Matrix from Non-Intact :");
disp(ppm2);
// Question 5
[w,su]=ppm_info(ppm,[0.25 0.25 0.25 0.25]);
[w2,su2]=ppm_info(ppm2,[0.25 0.25 0.25 0.25]);
fd = mopen('sequence.fasta','rb');
f_out = mopen('results.txt','w'); // Output results
f_out2 = mopen('results2.txt','w'); // Output results
f_out3 = mopen('results3.txt','w'); // Output results
mseek(0,fd);
while (~meof(fd))
header = mgetl(fd,1);
keys = strindex(header,' ');
if (isempty(keys)) then
break;
end
header=ascii(header);
k_id = ascii(header(2:(keys(1)-1)));
k_genus = ascii(header((keys(1)+1):(keys(2)-1)));
k_specie = ascii(header((keys(2)+1):(keys(3)-1)));
next_entry=0;
seq = [];
end
mclose(fd);
disp("QUESTION 5");
stat_align_pos = [];
stat_align_score = [];
for n_key=1:u_row_p // consider the sense strand
dna_seq = get_fasta_at('sequence.fasta',gp(n_key,1)-up_thresh_len,gp(n_key,1)+down_thresh_len+safety,1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[s_mat,sm_pos,sm_seq]=get_motif_score(dna_seq,ppm);
if (up_thresh_len+1-sm_pos >= N ) then
if sm_pos~=0 then
score=log(s_mat(sm_pos));
else
score=0;
end
s_write = sprintf('%s %s %s %d %2.3f %s %s',k_id,k_genus,k_specie,sm_pos,score,ascii(dna_seq),ascii(sm_seq));
mputl(s_write,f_out);
stat_align_pos = [stat_align_pos, sm_pos];
stat_align_score = [stat_align_score, score];
end
end
end
for n_key=1:u_row_n // consider the anti-sense strand
dna_seq = get_fasta_at('sequence.fasta',gn(n_key,2)-down_thresh_len+1,gn(n_key,2)+up_thresh_len+safety,-1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
dna_seq = dna_seq(:,$:-1:1);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[s_mat,sm_pos,sm_seq]=get_motif_score(dna_seq,ppm);
if (up_thresh_len+1-sm_pos >= N ) then
//disp(sm_pos);
if sm_pos~=0 then
score=log(s_mat(sm_pos));
else
score=0;
end
s_write = sprintf('%s %s %s %d %2.3f %s %s',k_id,k_genus,k_specie,sm_pos,score,ascii(dna_seq),ascii(sm_seq));
//disp(s_write);
mputl(s_write,f_out);
stat_align_pos = [stat_align_pos, sm_pos];
stat_align_score = [stat_align_score, score];
end
end
end
mclose(f_out);
disp(msprintf('Total Number of Genes: %d',(u_row_p+u_row_n)))
disp("STATISTICAL ALIGNMENT FROM (3)");
disp(msprintf('Number of Genes with Potential Promoters: %d',length(stat_align_pos)))
stat_align_pos = up_thresh_len-stat_align_pos+1;
mean_prom_location3 = (mean(stat_align_pos));
disp(mean_prom_location3)
promoter_percentage3 = length(stat_align_pos)/(u_row_p+u_row_n)*100;
disp(msprintf('Percentage of Genes with Potential Promoters: %5.3f%%',promoter_percentage3))
figure
histplot(0:up_thresh_len,stat_align_pos,normalization=%f, style=16);
title('(a) Distribution of Promoter (Statistical Search (3))','fontsize',5)
xlabel('Upstream Position','fontname','times bold','fontsize',3)
ylabel('Genes count','fontname','times bold','fontsize',3)
stat_align_pos2 = [];
stat_align_score2 = [];
for n_key=1:u_row_p // consider the sense strand
dna_seq = get_fasta_at('sequence.fasta',gp(n_key,1)-up_thresh_len,gp(n_key,1)+down_thresh_len+safety,1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[s_mat,sm_pos,sm_seq]=get_motif_score(dna_seq,ppm2);
if (up_thresh_len+1-sm_pos >= N ) then
if sm_pos~=0 then
score=log(s_mat(sm_pos));
else
score=0;
end
s_write = sprintf('%s %s %s %d %2.3f %s %s',k_id,k_genus,k_specie,sm_pos,score,ascii(dna_seq),ascii(sm_seq));
mputl(s_write,f_out2);
stat_align_pos2 = [stat_align_pos2, sm_pos];
stat_align_score2 = [stat_align_score2, score];
end
end
end
for n_key=1:u_row_n // consider the anti-sense strand
dna_seq = get_fasta_at('sequence.fasta',gn(n_key,2)-down_thresh_len+1,gn(n_key,2)+up_thresh_len+safety,-1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
dna_seq = dna_seq(:,$:-1:1);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[s_mat,sm_pos,sm_seq]=get_motif_score(dna_seq,ppm2);
if (up_thresh_len+1-sm_pos >= N ) then
if sm_pos~=0 then
score=log(s_mat(sm_pos));
else
score=0;
end
s_write = sprintf('%s %s %s %d %2.3f %s %s',k_id,k_genus,k_specie,sm_pos,score,ascii(dna_seq),ascii(sm_seq));
mputl(s_write,f_out2);
stat_align_pos2 = [stat_align_pos2, sm_pos];
stat_align_score2 = [stat_align_score2, score];
end
end
end
mclose(f_out2);
disp("STATISTICAL ALIGNMENT FROM (4)");
disp(msprintf('Number of Genes with Potential Promoters: %d',length(stat_align_pos2)))
stat_align_pos2 = up_thresh_len-stat_align_pos2+1;
mean_prom_location4 = (mean(stat_align_pos2));
disp(mean_prom_location4);
promoter_percentage4 = length(stat_align_pos2)/(u_row_p+u_row_n)*100;
disp(msprintf('Percentage of Genes with Potential Promoters: %5.3f%%',promoter_percentage4))
figure
histplot(0:up_thresh_len,stat_align_pos2,normalization=%f, style=16);
title('(b)Distribution of Promoter(Statistical Search (4))','fontsize',4)
xlabel('Upstream Position','fontname','times bold','fontsize',3)
ylabel('Genes count','fontname','times bold','fontsize',3)
stat_align_pos3 = [];
stat_align_score3 = [];
ppm3 = (ppm+ppm2)/2;
disp(ppm3);
//for n=1:row_p2 // consider the sense strand
// n_key = good_p2(n);
for n_key=1:u_row_p // consider the sense strand
dna_seq = get_fasta_at('sequence.fasta',gp(n_key,1)-up_thresh_len,gp(n_key,1)+down_thresh_len+safety,1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[s_mat,sm_pos,sm_seq]=get_motif_score(dna_seq,ppm3);
if (up_thresh_len+1-sm_pos >= N ) then
if sm_pos~=0 then
score=log(s_mat(sm_pos));
else
score=0;
end
s_write = sprintf('%s %s %s %d %2.3f %s %s',k_id,k_genus,k_specie,sm_pos,score,ascii(dna_seq),ascii(sm_seq));
mputl(s_write,f_out3);
stat_align_pos3 = [stat_align_pos3, sm_pos];
stat_align_score3 = [stat_align_score3, score];
end
end
end
for n_key=1:u_row_n // consider the anti-sense strand
dna_seq = get_fasta_at('sequence.fasta',gn(n_key,2)-down_thresh_len+1,gn(n_key,2)+up_thresh_len+safety,-1);
dna_seq = dna_seq(1:up_thresh_len+down_thresh_len);
dna_seq = dna_seq(:,$:-1:1);
d_len = length(dna_seq);
if (d_len==(up_thresh_len+down_thresh_len)) then
[s_mat,sm_pos,sm_seq]=get_motif_score(dna_seq,ppm3);
if (up_thresh_len+1-sm_pos >= N ) then
//disp(sm_pos);
if sm_pos~=0 then
score=log(s_mat(sm_pos));
else
score=0;
end
s_write = sprintf('%s %s %s %d %2.3f %s %s',k_id,k_genus,k_specie,sm_pos,score,ascii(dna_seq),ascii(sm_seq));
//disp(s_write);
mputl(s_write,f_out3);
stat_align_pos3 = [stat_align_pos3, sm_pos];
stat_align_score3 = [stat_align_score3, score];
end
end
end
mclose(f_out3);
disp("STATISTICAL ALIGNMENT FROM (3)+(4)");
disp(msprintf('Number of Genes with Potential Promoters: %d',length(stat_align_pos3)))
stat_align_pos3 = up_thresh_len-stat_align_pos3+1;
mean_prom_location5 = (mean(stat_align_pos3));
disp(mean_prom_location5)
promoter_percentage5 = length(stat_align_pos3)/(u_row_p+u_row_n)*100;
disp(msprintf('Percentage of Genes with Potential Promoters: %5.3f%%',promoter_percentage5))
figure
histplot(0:up_thresh_len,stat_align_pos3,normalization=%f, style=16);
title('(c)Distribution of Promoter for NZ_CP014692.1(Statistical Search (3)+(4))','fontsize',4)
xlabel('Upstream Position','fontname','times bold','fontsize',3)
ylabel('Genes count','fontname','times bold','fontsize',3)
|
b561ba7468f0981ceb396f730bc26fc8d6ab88f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH18/EX18.29/18_29.sce | 02926a1c072b2dc8938c31140071aff77889e915 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 332 | sce | 18_29.sce | //ques-18.29
//Determining temperature at which water will boil when atmospheric pressure is 528mm Hg
clc
P1=528; P2=760;//pressure (in mm Hg)
H=545.5;//latent heat of vapourisation (in cal/g)
T2=273+100;//temperature (in K)
T1=1/((log10(P2/P1)*2.303*1.987)/(H*18)+(1/T2));
printf("The temperature required is %.0f K.",T1);
|
91fd7bbb4650b0d2422562e83b1344271e68dceb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1299/CH15/EX15.44/example15_44.sce | 8a45479d82d1e22e3c33afd62560ff67134822c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 213 | sce | example15_44.sce | //Example 15.44
//state space representation of LTI system
clear;clc;
xdel(winsid());
A=[0 1;-2 -3];
B=[0;1];
C=[1 1];
D=[0];
E=[0];
H=syslin('c',A,B,C);
s=%s;
g=eye(2,2);
P=(-s*g)-A
sm=[P B;C D];
H1=sm2ss(sm)
|
1f86e83383498c049edb12303ac91e3e22743613 | 9d0d8cfb131efa34cafc47d938fac6ddcee0750c | /miniproject/1prob/normalnoisevec.sci | 063bcb606ff90d7f2606ea707867000394b06075 | [] | no_license | kazipetasurya/ee340 | 52c688b028a28effa88dc4a9eb653735e4fc19bc | 3885ad37122817c03d9a51d9f7df2c9c9f5f7251 | refs/heads/master | 2021-01-18T15:10:53.081056 | 2012-09-07T06:43:54 | 2012-09-07T06:43:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 279 | sci | normalnoisevec.sci |
function[randvec]=gaussiannoise(variance,N)
nvec=linspace(0,N,N+1)
//disp(length(nvec))
rand('normal') //Want a normal variable
randvec=rand(nvec) //Want N values of random variable
randvec=sqrt(variance)*randvec //Variance(a*X)=a^2 Variance(X)
endfunction
|
626c5adef0c8e98bc6d1538329cdf90e02a64c91 | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/examples/aio_scan_demo.sce | ab48ad0a838caa8c498a8f00f6933a389339261d | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 1,022 | sce | aio_scan_demo.sce | aiData = [];
channels = 1
rate = 1000;
scanDataSize = 1000;
duration = 5;
expValue = -3;
sineBias = 2.5;
sineBase = sin(linspace(0, 2*%pi, scanDataSize));
expWave = exp(linspace(expValue, expValue + 0.8, scanDataSize));
sineWave = sineBase.*expWave + sineBias;
// initialize analog input/output scanning sessions
mdaqAOScanInit(channels, sineWave', [-10,10], %T, rate, duration);
mdaqAIScanInit(channels, [-10,10], %F, rate, duration);
// start AI scanning without waiting for data
mdaqAIScanStart();
// start signal generation
mdaqAOScanStart();
n = (rate * duration) / scanDataSize;
for i=1:n-1
expValue = expValue + 0.8;
expWave = exp(linspace(expValue, expValue + 0.8, scanDataSize));
sineWave = sineBase.*expWave + sineBias;
// queue new data
mdaqAOScanData(channels, sineWave', %T);
// start and acquire data from analog inputs
aiData = [aiData; mdaqAIScanRead(scanDataSize, 10)];
end
// acquire rest of samples
aiData = [aiData; mdaqAIScanRead(scanDataSize, 10)];
plot(aiData)
|
2f407155e958d6a418920d061af541a7d8d616f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH7/EX7.28/example7_28.sce | 299bedbaa89c34084dc7056ed8117ceff9586176 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 598 | sce | example7_28.sce | // Calculate Av,Zo,Zi
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 7-28 in page 332
clear; clc; close;
// Given data
Rd=15; // Drain resistance in k-ohms
Rg=1; // Gate resistance in M-ohms
rd=5; // Dynamic resistance in k-ohms
gm=5; // Transconductance in m-mho
Vdd=20; // Drain voltage in volts
// Calculation
mu=rd*gm;
Av=(mu*Rd)/(rd+Rd);
Zo=rd;
Zi=Rg;
printf("(a)Av = %0.2f\n(b)Zo = %0.0f k-ohms\n(c)Zi = %0.0f M-ohms",Av,Zo,Zi);
// Result
// (a) Av = 18.75
// (b) Zo = 5 K-ohms
// (c) Zi = 1 M-ohms |
ff9e1b18ab29b17b83993b40dad1ec1652fe8456 | 717ddeb7e700373742c617a95e25a2376565112c | /1340/CH4/EX4.1/4_1.sce | 61cfa6c8e6e83c800cf8d5343227ce2657ae6fa4 | [] | 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 | 362 | sce | 4_1.sce | clc;
s = %s;
num = poly([-3],'s','roots');
den = poly([-2 -4 -5],'s','roots');
G = num/den;
disp(G,"G(s)=");
disp(laplace(1,t,s),"input is a step function:");
syms t ;
printf("C(s)=G(s)*R(s)=");
K = G/s;
C = syslin('c',K);
disp(C);
[A] = pfss(C);l=0;disp(A);
for k = 1:size(A)
F(k)= ilaplace(A(k),s,t);
l = l+F(k);
end
disp(l,"c(t)="); |
f06ae40c2fbda55e14af9a6d61a8a261b58039c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3681/CH4/EX4.17/Ex4_17.sce | 9ccf3b01e73b2a1c3ff5b75bd8728b6bd3e6e44c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 930 | sce | Ex4_17.sce | // Calculating the temperature of machine after one hour of its final steady temperature rise
clc;
disp('Example 4.17, Page No. = 4.24')
// Given Data
Ti = 40;// Initial temperature (in degree celsius)
T_ambient = 30;// Ambient temperature (in degree celsius)
Tm = 80;// Final steady temperature rise (in degree celsius)
Th = 2;// Heating time constant (in hours)
t = 1;// Since we have to calculate temperature of machine after one hour of its final steady temperture rise (in hours)
// Calculation of the final steady temperature rise of coil surface and hot spot temperature rise
Ti_rise = Ti-T_ambient;// Initial temperature rise (in degree celsius)
T = Tm*(1-%e^(-t/Th))+(Ti_rise*%e^(-t/Th));// Temperature rise after one hour (in degree celsius)
disp(T+T_ambient,'Temperature of machine after one hour (degree celsius)=');
//in book answer is 67.54 (degree celsius). The answers vary due to round off error
|
0f7034bd5e5b57df598882d2d630252c530436c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH11/EX11.3/Ex11_3.sce | 90cd3661437a336fee66a69a7f60133ae3baa5e7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,140 | sce | Ex11_3.sce |
//Ex11_3
clc;
//Given:
//Atomic absorption coefficients for diferent atoms in b/atom
O=1.69;
Na=2.32;
P=3.17;
Ca=4.22;
I=12.03
// 1 b=10^(-24) cm^2
//solution:
//mass absorption coefficient for the given atoms in cm^2/g
uO=(O*10^-24*6.022*10^23)/16;
uNa=(Na*10^-24*6.022*10^23)/23;
uP=(P*10^-24*6.022*10^23)/31;
uCa=(Ca*10^-24*6.022*10^23)/40;
uI=(I*10^-24*6.022*10^23)/127;
// The mass absorption coefficient for the given substance is the sum of the mass absorption coefficients of the atoms present, each atom being weighted in proportion to its mass in the molecule.
//(a) NaI(A1=150)
u1=(uNa*23+uI*127)/150;
//(b) NaIO3 (A2=198)
u2=(uNa*23+uI*127+uO*48)/198;
//(c) Ca(PO3)2 (A3=198)
u3=(uCa*40+uP*62+uO*96)/198;
//(d) Ca3(PO4)2 (A4=310)
u4=(uCa*120+uP*62+uO*128)/310;
printf("The mass absorption coefficient of NaI in cm^2/g is = %f ",u1)
printf("\n \n The mass absorption coefficient of NaIO3 in cm^2/g is = %f ",u2)
printf("\n \n The mass absorption coefficient of Ca(PO3)2 in cm^2/g is = %f ",u3)
printf("\n \n The mass absorption coefficient of Ca3(PO4)2 in cm^2/g is = %f ",u4)
|
1f981bb71fe6e6196c0baecf49ba086246426bc0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /842/CH9/EX9.16/Example9_16.sce | 28fe8e4de5fcff73f51c3ca115b4f7d7db0cfbbf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example9_16.sce | //clear//
//Example9.16:Initial Value Theorem of Lapalace Transform
syms s;
num =poly([12 5 2],'s','coeff')
den =poly([20 14 4 1],'s','coeff')
X = num/den
disp (X,"X(s)=")
SX = s*X;
Initial_Value =limit(SX,s,%inf);
disp(Initial_Value,"x(0)=")
//Result
//(2*%inf^3+5*%inf^2+12*%inf)/(%inf^3+4*%inf^2+14*%inf+20) =2
|
8d86d2137fec502b19bf1230b2283bf299c497fb | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/blackman/blackman5.sce | 49fa8a5959d68d1949ddf6769a669f50c8cd8798 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 181 | sce | blackman5.sce | //random negative i/p
b=blackman(-23);
disp(b);
//output
//
//!--error 10000
//N must be a positive integer
//at line 35 of function blackman called by :
//b=blackman(-23);
|
0cebeea5163c5bef5851793b99b8f71f43c80ca6 | dd62f0e176af8b35f4de2d6b64692105fd90afd6 | /fitValue.sci | 75db2a6f7cea4bd3e7782dbdc16b3df05247cb00 | [] | no_license | FOSSEE/FOSSEE-System-Identification-Toolbox | 2a631de0f2d6b993b3f19df4a220b274a1d85edb | 11ee9c829fe88301c69b731cdf9fe7957d0fa68c | refs/heads/master | 2018-10-15T08:25:21.323393 | 2018-07-31T10:56:53 | 2018-07-31T10:56:53 | 108,255,727 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 428 | sci | fitValue.sci | function varargout = fitValue(varargin)
yData = varargin(1)
ySys = varargin(2)
fitValueNum = 0
fitValueDen = 0
sampleLength = size(yData,'r')
yDataMean = mean(yData)
for ii = 1:sampleLength
fitValueNum = fitValueNum + (yData(ii)-ySys(ii))^2
fitValueDen = fitValueDen + (yData(ii)-yDataMean)^2
end
fit = 100*(1-sqrt(fitValueNum/fitValueDen))
varargout(1) = fit
endfunction
|
59e95ca47533d2d4ce165c077253de185dc8d7da | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/macros/scicos/TIME_f.sci | 9fbce472e1ab017748b106afadcb63e0720c60e0 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,172 | sci | TIME_f.sci | function [x,y,typ]=TIME_f(job,arg1,arg2)
x=[];y=[],typ=[]
select job
case 'plot' then
standard_draw(arg1)
[orig,sz]=arg1(1:2)
wd=xget('wdim').*[1.016,1.12]
graphics=arg1(2); [orig,sz,orient]=graphics(1:3)
thick=xget('thickness');xset('thickness',2)
p=wd(2)/wd(1);p=1
rx=sz(1)*p/2
ry=sz(2)/2
xarc(orig(1)+0.05*sz(1),orig(2)+0.95*sz(2),0.9*sz(1)*p,0.9*sz(2),0,360*64)
xset('thickness',1);
xsegs([orig(1)+rx orig(1)+rx;
orig(1)+rx orig(1)+rx+0.6*rx*cos(%pi/6)],..
[orig(2)+ry orig(2)+ry ;
orig(2)+1.8*ry orig(2)+ry+0.6*ry*sin(%pi/6)],0)
xset('thickness',thick);
case 'getinputs' then
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x=arg1
graphics=arg1(2);label=graphics(4)
while %t do
[ok,label]=getvalue('Set Time block parameter',..
'Label',list('str',1),label)
if ~ok then break,end
graphics(4)=label;x(2)=graphics;
break
end
case 'define' then
model=list('timblk',0,1,0,0,[],[],[],[],'c',%f,[%f %t])
x=standard_define([2 2],model)
end
|
3df71be8e655e6884d4ab7f00c8ef66284c27779 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH3/EX3.7/3_7.sce | 95ad2abe5884543568a237c5c947a7e3bb95dcdc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sce | 3_7.sce | clear;
clc;
Vs=33e3/sqrt(3);
Vr=30e3/sqrt(3);
Pr=10e6;
pf=.8;
eff=.96;
I=Pr/(3*Vr*pf);
Ps=Pr/eff;
Pl=Ps-Pr;
R=Pl/(3*I*I);
pfa=acos(pf);
X=((Vs-Vr)-(I*R*pf))/(I*sin(pfa));
mprintf("R= %.1f ohm per phase, X= %.1f ohm per phase",R,X);
|
4088f681788de203e75525bb8acd7f66d736d183 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH8/EX8.5/8_5.sce | 2dd2a24d2ed0301992d8cdb08053c83a5560f0f3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 859 | sce | 8_5.sce | t=12.8;//half life of the particle in hours//
k=0.693/(t*60);//value of k for the experiment in per min//
printf('Value of k for the experiment=k=%fper min',k);
printf('\n-dN/dt=rate=100*k*N=(0.693/12.8*60)*N\nN,the number of copper atoms required to produce 100Beta particles per minute\n we get N=(100*12.8*60)/0.693=1.108*10^5');
w=63.5;//atomic weight of Cu in grams//
AN=6.023*10^23;
N=1.108*10^5;
W=(N*w)/AN;//weight of Cu in grams//
printf('\nWeight of Cu=W=%f=1.17*10^-17grams',W);
printf('\nSince the maximum activity is 100Beta particles per minute,N=(a-x) at the end of six hours,i.e t=6 and N=1.108*19^5atoms');
printf('\nAt zero time N0=a\n a-x=a*exp(-k*t)\nUpon solving the above equation we get N0=a=1.533*10^5atoms\nWeight of Cu to start with=1.66*10^-17grams.');
printf('\nInitial activity=138.30000 disintegrations per minute');
|
39d059d089d8fa788c40b0e0e234526364066731 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1/macros/util/mcos.sci | c0e4740a7cfe26870dc467632f74631df505c9ed | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 447 | sci | mcos.sci | function x=mcos(a)
// mcos - computes the matrix cosine
//%CALLING SEQUENCE
// x=mcos(a)
//%PARAMETERS
// a : square hermitian matrix
// x : square hermitian matrix
//%DESCRIPTION
//This macro is called by the function cos to compute square matrix cosine
//!
[m,n]=size(a)
if m<>n then error(20,1),end
if a<>a' then error('Non hermitian matrix'),end
r=and(imag(a)==0)
[u,s]=schur(a)
x=u*diag(cos(diag(s)))*u'
if r then x=real(x),end
|
5004ab22d0456a61d5328e8b75cfb107f1726bb8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH3/EX3.4/3_4.sce | 9c846404fca8e76fdb56065a2498c5ea2b4d4414 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sce | 3_4.sce |
clear;
close;
clc;
R=5
f=50
L=R/(2*%pi*f);
V=11e3;
Vph=11/sqrt(3);
C=0.01d-6;
y=sqrt(L*C);
Em=sqrt(2)*Vph;
ep=2*Em;
ep=round(ep*10)/10;
y=round(y*1e7)/1e7;
t=y*%pi;
t=fix(t*1e7)/1e7
ea=ep/t;
ea=round(ea/1e3)*1e3
fn=(2*3.14*y)^-1;
Em=round(Em)
Emax=Em/y;
Emax=round(Emax/1000)*1e3;
mprintf("peak restriking voltage=%dkV",ep);
printf("\nfrequency of oscillations=%dc/s",fn);
printf("\naverage rate of restriking voltage=%fkV/microsecs",ea/1e6);
printf("\nmax restriking voltage=%dV/microsecs",Emax/1e3);
|
18bb35bb91b9f5c7484d8f9bfba9d80a2c8e9779 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH7/EX7.3/Chapter7_Example3.sce | d57b5c05a7003ba27860a48ad16dd835879d975a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,308 | sce | Chapter7_Example3.sce | //Chapter-7, Example 7.3, Page 282
//=============================================================================
clc
clear
//INPUT DATA
Ta=20;//Temperature of air in degree C
v=3;//Velocity of flow in m/s
L=2;//Length of plate in m
W=1;//Width of plate in m
x1=0.3;//Initial point of the boundary layer in m
x2=0.8;//Final point of the boundary layer in m
p=1.17;//Density of air at 20 degree C in kg/m^3
k=(15*10^-6);//Kinematic viscosity in m^2/s
Re=(5*10^5);//Reynolds number at the transition frm laminar to turbulant
//CALCULATIONS
x=(k*Re)/v;//Critical length in m
Rel=(v*L)/k;//Reynolds number
q=(4.64*L)/sqrt(Rel)*1000;//Boundary layer thickness at the trailing edge of plate in mm
ts=1.292*(0.5*p*v^2)*sqrt(1/Rel);//Average shear stress in N/m^2
F=(2*L*ts);//Drag force on the two sides of the plate in N
q80=(4.64*x2)/sqrt((v*x2)/k);//Boundray layer thickness at x=0.8 m
q30=(4.64*x1)/sqrt((v*x1)/k);//Boundray layer thickness at x=0.3 m
m=((5/8)*p*v*(q80-q30))/10^-3;//Mass flow of air in kg/s
//OUTPUT
mprintf('Boundary layer thickness at the trailing edge of plate is % 3.2f mm \nDrag force on the two sides of the plate is %3.4f N \nMass flow of air is %3.1f*10^-3 kg/s',q,F,m)
//=================================END OF PROGRAM==============================
|
79c90fc8b30e624b21a58e0bf016acb07a100b69 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH7/EX7.25/ex_25.sce | d429bb823732f749a5003ce1da8d51ee2e904a3e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 202 | sce | ex_25.sce | //Example 25 //Velocity
clc;
clear;
close;
//given data :
v=1.8*10^8;// in m/s
lamda=3.6*10^-7;// in m
dv_dlamda=3.8*10^13;// in per sec
vg=v-(lamda*dv_dlamda);
disp(vg,"The group velocity,vg(m/s) = ")
|
041243c5e35b84f6e085f8f5f265586e4d3752f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /281/CH9/EX9.1/example9_1.sce | 5b7339ea007ce5edbb336beda05a8dddcf7bcc74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,150 | sce | example9_1.sce | disp('chapter 9 ex9.1')
disp('given')
disp('design a suitable circuit using 741 op-amp with a supply of +or-12volt')
disp('capacitor coupled zero crossing detector to handle 1kHz square wave input with peak-to-peak amplitude of 6volt')
Vi=6
f=1000
Vcc=12
disp('I2>IBmax')
disp('let I2=100*500nA')
IBmax=500*10^(-9)
I2=100*500*10^(-9)
disp('let Vb=0.1volt')
Vb=0.1
disp('VR2=Vcc-Vb')
VR2=Vcc-Vb
disp('volts',VR2)
disp('R2=VR2/I2')
R2=VR2/I2
disp('ohms',R2)
disp('use 220kohm standard value and recalculate I2')
R2=220000
disp('I2=VR2/R2')
I2=VR2/R2
disp('amperes',I2)
disp('VR3=Vb=0.1volt')
VR3=0.1
disp('R3=VR3/I2')
R3=VR3/I2
disp('ohms',R3) //use a 1.8kohm standard value
disp('let VBE=0.7volt')
VBE=0.7
disp('R1=0.1*VBE/IBmax')
R1=0.1*VBE/IBmax
disp('ohms',R1)
disp('use R1=120kohm standard value')
R1=120000
disp('Vi(peak)=Vi/2')
Vipeak=Vi/2
disp('volts',Vipeak)
disp('I1=Vipeak/R1')
I1=Vipeak/R1
disp('amperes',I1)
disp('let v=1volt')
v=1
disp('t=1/(2*f)')
t=1/(2*f)
disp('seconds',t)
disp('C1=I1*t/v')
C1=I1*t/v
disp('farads',C1)
disp('use a 0.015*10^(-6)F standard value to give v<1volt')
|
a9a2bcf18824c8b7dcc515b880ce1d66a340c0ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /3863/CH16/EX16.11/Ex16_11.sce | cf8ac4757a520617e869b0285c19d7a6551efd5a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 761 | sce | Ex16_11.sce | clear
//
//Given
//Variable declaration
P=300e3 //Power transmitted in W
N=80 //speed of the shaft in r.p.m
tau=60 //Maximum shear stress in N/sq.mm
//Calculation
T=P*60/(%pi*2*N)*1e3 //Mean Torque transmitted in Nmm
Tmax=1.4*T //Maximum Torque transmitted in Nmm
D=((16*Tmax/(%pi*tau))**(1/3)) //Suitable diameter of the shaft in mm
Do=(((Tmax*16)/(%pi*tau*(1-0.6**4)))**(1/3)) //External diameter of hollow shaft in mm
Di=0.6*Do //Internal diameter of hollow shaft in mm
//Result
printf("\n External diameter of hollow shaft = %d mm",Do)
printf("\n Internal diameter of hollow shaft = %d mm",Di)
|
dc8f2e220316a12efb71726860b87a5fb1afdc52 | 68e53df229b123d7681a4f7fa4db43b4982d5362 | /sigmaplot.sce | c97fb5175d75402f5688e87977804796ab5e2aa3 | [] | no_license | yeoleparesh/Control-system | 06c30e594d51fec7a8ffabc452a7866b38604a23 | dee7fbfd3c2c46cc1d4d0a3cb8af45d918da972b | refs/heads/master | 2021-01-17T12:38:05.661769 | 2019-01-03T12:03:53 | 2019-01-03T12:03:53 | 59,283,431 | 0 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 130 | sce | sigmaplot.sce | // Function sigmaplot
// Example1
s=%s;
sys=syslin('c',1/(1+s));
sigmaplot(sys)
sigmaplot(sys,sys^2)
sigmaplot(sys,20:40)
|
70cc73670ee4fb34d2fa9360046fb1444ece1ffe | 449d555969bfd7befe906877abab098c6e63a0e8 | /905/CH1/EX1.22/1_22.sce | 8bc66f68c17ff93c916a3094fb03c7a4f40c49a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,525 | sce | 1_22.sce | clear;
clc;
// Illustration 1.22
// Page: 61
printf('Illustration 1.22 - Page:61 \n\n');
// Solution
//*****Data*****//
// a-oxygen b-nitrogen
M_a = 32;
T = 293; // [K]
P = 0.1; // [atm]
d = 0.3*10^-6; // [m]
e = 0.305; // [porosity]
t = 4.39; // [tortuosity]
k = 1.3806*10^-23; // [J/K]
R = 8.314; // [cubic m.Pa/mole.K]
l = 2*10^-3; // [m]
D_ab = 2.01*10^-4; // [square m/s]
y_a1 = 0.8;
y_a2 = 0.2;
//*****//
// Using data from Appendix B for oxygen and nitrogen, and equation (1.45)
sigma_a = 3.467; // [Angstrom]
sigma_b = 3.798; // [Angstrom]
sigma_AB = ((sigma_a+sigma_b)/2)*10^-10; // [m]
lambda = k*T/(sqrt(2)*3.14*(sigma_AB^2)*P*1.01325*10^5); // [m]
// From equation 1.101
K_n = lambda/d;
printf("The value of a dimensionless ratio, Knudsen number is %f\n\n",K_n);
// It means that both molecular and Knudsen diffusion are important and equation (1.109) must be used to calculate N_a
// From example 1.21 N_b/N_a = -1.069
// Therefore si_a = 1/(1+(N_b/N_a))
si_a = 1/(1+(-1.069));
// From equation 1.100
D_abeff = D_ab*e/t; // [square m/s]
// From equation 1.103
D_Ka = (d/3)*(sqrt(8*R*T)/sqrt(3.14*M_a*10^-3)); // [square m/s]
// Using equation 1.107
D_Kaeff = D_Ka*e/t; // [square m/s]
Y_a = 1+(D_abeff/D_Kaeff);
// Using equation 1.109 to calculate N_a
N_a = (si_a*P*1.01325*10^5*D_abeff*log((si_a*Y_a-y_a2)/(si_a*Y_a-y_a1)))/(R*T*l);
N_b = -1.069*N_a;
printf("The diffusion fluxes of both components oxygen and nitrogen are %e mole/square m.s and %e mole/square m.s respectively\n",N_a,N_b); |
79990016d942a0fa9f86d39f7b9129a06b512e92 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH7/EX7.10/Ex7_10.sce | 7332b6e350097ba84d7fb7871605beda60afb117 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | sce | Ex7_10.sce | clear;
clc;
//Example 7.10
fT=500;
Ic=1;
b=100;
Vt=0.026;
C2=0.3*10^-12;
fB=fT/b;
printf('\nbandwidth=%.3f MHz\n',fB)
gm=Ic/Vt;
printf('\ntransconductance=%.3f mA/V\n',gm)
fT=500000000;
gm=38.5*0.001;
C1=gm/(fT*2*%pi)-C2;
printf('\ncapacitance =%3.2eF\n',C1)
|
fe726e834dc10712522254c13a675f21370f8929 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH13/EX13.3/13_3.sce | 5430de7893c650e6b5664068651dd8b2f03c49fd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 483 | sce | 13_3.sce | clear;
clc;
//Example - 13.3
//Page number - 435
printf("Example - 13.3 and Page number - 435\n\n");
//This problem involves proving a relation in which no mathematics and no calculations are involved.
//For prove refer to this example 13.3 on page number 435 of the book.
printf(" This problem involves proving a relation in which no mathematics and no calculations are involved.\n\n");
printf(" For prove refer to this example 13.3 on page number 435 of the book.")
|
d367e733fc7747947a26ab99890dfe4ec3c1b03d | 449d555969bfd7befe906877abab098c6e63a0e8 | /797/CH3/EX3.8.s/3_08_solution.sce | 77c073a664e4d8d04826a51e3af3587b12a7fe4e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 474 | sce | 3_08_solution.sce | //Soultion 3-08
WD=get_absolute_file_path('3_08_solution.sce');
datafile=WD+filesep()+'3_08_example.sci';
clc;
exec(datafile)
A = b * h; //area of door
P_avg = rho * g * (s + b / 2); //hydrostatic pressure formula
F_g = P_avg * A;
F_g= F_g / 1000; //conversion from [N] to [kN]
printf("Hydrostatic force on the door is %1.2f kN", F_g);
y_p = s + b / 2 + b**2 / (12 * (s + b / 2)) //formula for centre of pressure for P_o=0
printf("\nThe center of pressure is %1.2f m", y_p)
|
c53e34f8f6207ae676e466572f0f4dd2347a04b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH11/EX11.10/11_10.sce | 58ebf404896fbb9234d299f67ff8828f0f048a8e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 715 | sce | 11_10.sce | clear;
clc;
//Example - 11.10
//Page number - 400
printf("Example - 11.10 and Page number - 400\n\n");
//Given
x_A = 0.20;// Mole fraction of A
x_B = 0.35;// Mole fraction of B
x_C = 0.45;// Mole fraction of C
phi_A = 0.7;// Fugacity coefficient of A
phi_B = 0.6;// Fugacity coefficient of B
phi_C = 0.9;// Fugacity coefficient of C
P = 6.08;//[MPa] - Pressure
T = 384;//[K] - Temperature
//We know that
//log(phi) = x_1*log(phi_) + x_2*log(phi_2) + x_3*log(phi_3)
log_phi = x_A*log(phi_A) + x_B*log(phi_B) + x_C*log(phi_C);// Fugacity coefficient
phi = exp(log_phi);
//Thus fugacity is given by,
f_mixture = phi*P;//[MPa]
printf("The fugacity of the mixture is %f MPa",f_mixture); |
617202e0483eb63315e6697a344e24502c1c54ef | 449d555969bfd7befe906877abab098c6e63a0e8 | /2354/CH9/EX9.1/9_1.sce | 04927e68baa67f693b597cb0f20bf5409054bdcc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 9_1.sce | //example 9.1
clc; funcprot(0);
// Initialization of Variable
T2=1212.0;
p1=1.0;
T1=540.0;
T4=1878.0;
T3=3600.0;
u4=342.2;
u1=92.04;
u3=721.44;
u2=211.3;
m=1.47/1000;
V1=0.02;
k=8;//V1/V2
p2=k*p1*T2/T1;
disp(p2,"pressure in atm");
p3=p2*T3/T2;
disp(p3,"pressure in atm");
p4=p1*T4/T1;
disp(p4,"pressure in atm");
neta=1-(u4-u1)/(u3-u2);
disp(neta*100,"thermal efficiency in %");
W=m*(u3-u4-u2+u1);
mep=W/V1/(1-1/k)*778/144;
disp(mep,"mean effective pressure in lbf/in^2 is equal to 8.03 atm");
clear()
|
b9be29004ddd3b551d2b43301ac2dd157b5f1fd3 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/DEVELOPMENT-LANGUAGES/oto-manguean/cly.tst | e968effd900bcde4ec9aba62d19d8de1926f630d | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 19,954 | tst | cly.tst | nkqwa¹ V;HAB;PL;2
ntyjyuq¹ V;PROSP;PL;1+INCL
ntyinq³ V;PROSP;PL;1+EXCL
swi²⁰ V;PROG;PL;2
sqwe¹⁴ V;HAB;SG;2
lqa³ V;HAB;PL;1+INCL
ntykonq⁴² V;PROSP;PL;1+EXCL
yjaq³ V;PROG;PL;3
nkin² V;PROSP;PL;2
nten³ V;PROG;PL;1+INCL
sne³ V;HAB;PL;1+EXCL
sta¹ V;HAB;PL;1+INCL
xyaq² V;HAB;SG;1
yqu² V;PFV;SG;1
kwi¹ V;HAB;SG;3
xki¹ V;HAB;SG;1
sqan¹ V;HAB;PL;3
stan¹⁴ V;PROSP;SG;1
yqwi⁴ V;PFV;PL;1+INCL
ntsa²⁴ V;PROSP;SG;2
ncha¹ V;PROG;SG;3
nda³ V;HAB;SG;1
nden⁴² V;PFV;PL;3
xin⁴² V;PROSP;PL;1+INCL
la¹ V;HAB;PL;1+INCL
nduq⁴² V;PFV;PL;2
ytsaq³ V;PROSP;PL;2
nkwi¹ V;PROSP;SG;1
ywi⁴² V;PROG;PL;2
ykwiq⁴ V;PROG;SG;1
xyaq² V;HAB;PL;1+INCL
stan¹⁴ V;PROSP;PL;1+EXCL
xyaq² V;PROG;PL;1+EXCL
nlyu¹ V;PFV;SG;2
ytsaq³ V;PROSP;SG;1
ntaq³ V;PROSP;SG;1
qya³ V;HAB;PL;3
ston⁴² V;PROSP;SG;2
ntykwen³ V;PFV;PL;3
xne¹⁰ V;PFV;PL;1+INCL
nkeq³ V;PROG;PL;2
yqo² V;PROG;SG;1
ya⁴² V;PROG;PL;1+EXCL
ntyja² V;HAB;SG;2
naq¹⁴ V;PFV;SG;2
yla³ V;PFV;PL;1+EXCL
lqa³ V;PROG;PL;1+INCL
ywi⁴² V;HAB;PL;3
xne¹⁰ V;PROG;PL;2
sna³ V;PFV;PL;2
nten³ V;PROG;SG;1
lqa³ V;PFV;PL;1+EXCL
ndywan² V;HAB;SG;3
ntykwen³ V;PROSP;PL;1+INCL
ndlyu⁴² V;PROG;PL;1+EXCL
ntsa²⁴ V;PROG;PL;3
ntyqya¹ V;HAB;SG;2
xlyu⁴² V;HAB;PL;1+INCL
lqa³ V;HAB;PL;2
ndlyu⁴² V;PROSP;SG;3
ncha¹ V;PFV;SG;3
nxin⁴² V;HAB;SG;3
ngwa² V;PFV;SG;2
slaq¹ V;HAB;SG;2
ya⁴² V;PROSP;PL;3
jinyiq² V;PROSP;PL;3
nkqi¹ V;PROSP;PL;2
ykwanq¹ V;PROG;PL;1+INCL
yo² V;PROSP;PL;1+INCL
nda³ V;PROSP;SG;1
nton³ V;PROSP;PL;2
ntyja² V;PROSP;PL;1+INCL
skwan⁴ V;HAB;SG;1
la¹ V;PROG;SG;3
xta¹ V;HAB;SG;2
qa²⁴ V;PFV;SG;2
qya⁴² V;PROSP;SG;3
xqwa¹⁰ V;PROG;SG;1
ntsen⁴² V;PROSP;SG;3
jlya⁴² V;HAB;PL;1+INCL
slya²⁴ V;HAB;SG;2
nton³ V;PROSP;SG;2
xku²⁰ V;HAB;SG;2
sqan¹ V;PFV;PL;2
nti¹ V;PROG;SG;2
son³ V;PROSP;SG;2
sti⁴ V;PFV;PL;3
ntykwan² V;PROSP;PL;2
sti⁴ V;PROG;PL;1+EXCL
sqwa¹⁴ V;HAB;PL;1+INCL
nkeq³ V;HAB;PL;2
nton⁴² V;PROG;PL;1+INCL
skwen¹ V;PROSP;PL;1+INCL
xqwa¹⁰ V;PROSP;SG;1
sla¹ V;PROSP;PL;3
sqyu¹ V;PROG;PL;2
skanq³ V;PROSP;SG;2
jinyiq² V;PROG;PL;1+EXCL
qan⁴ V;PROG;SG;1
ya⁴² V;PROSP;SG;2
sqwe²⁴ V;PFV;PL;1+EXCL
xla³ V;PFV;SG;2
kwa¹⁴ V;PROG;PL;2
xin⁴² V;PROG;SG;2
sla¹ V;PROG;SG;1
xla³ V;PFV;SG;3
nkwa³ V;HAB;PL;3
lkwi¹ V;PROG;SG;3
sen¹ V;PROG;PL;1+INCL
yqu² V;PROG;PL;1+EXCL
xqan¹ V;PROG;PL;3
swi²⁰ V;PROG;SG;3
ntyi¹ V;HAB;PL;1+INCL
xka²⁴ V;HAB;SG;2
sti⁴ V;PROSP;PL;3
sqyu¹ V;PROG;SG;2
sqyu¹ V;PROSP;PL;1+INCL
nsuq³ V;HAB;PL;1+INCL
sqan¹ V;PROSP;PL;1+INCL
skwa³ V;PFV;PL;1+EXCL
nchaq⁴² V;PROG;SG;1
ntqen¹ V;PFV;SG;2
ngya⁴² V;HAB;PL;3
xkuq² V;PFV;SG;2
naq¹ V;PFV;PL;1+INCL
jinyiq² V;PROG;SG;2
ntsu⁴² V;PROSP;PL;1+EXCL
ntyja² V;PROSP;SG;3
ntsa²⁴ V;PFV;PL;1+EXCL
xkwan¹⁴ V;PFV;PL;1+EXCL
skwa³ V;HAB;PL;3
nglu³ V;PROG;PL;3
ntykanq³ V;PROG;PL;1+INCL
nkqi¹ V;PROG;PL;2
skonq³ V;PROG;PL;2
skwan² V;PROSP;SG;1
nchaq⁴² V;PROSP;SG;1
yjwiq² V;HAB;SG;1
ndlyu¹ V;HAB;SG;3
ntsiq³ V;PROG;PL;2
yno¹ V;PFV;PL;2
slya²⁴ V;PROSP;PL;2
nchuq⁴ V;PROG;SG;2
la¹ V;HAB;PL;3
xtya²⁰ V;PROG;SG;1
nchaq⁴² V;PROG;PL;1+EXCL
sen⁴² V;HAB;SG;2
ytsen⁴² V;PROG;SG;3
yta⁴ V;PFV;PL;2
ytsaq³ V;HAB;SG;1
ntsaq⁴² V;PFV;SG;3
nxi² V;PROSP;SG;1
nchuq⁴ V;PFV;PL;1+EXCL
sqwe²⁴ V;PFV;PL;3
xne¹⁰ V;PROG;PL;3
ntsen⁴² V;PROSP;PL;3
yjwiq² V;PROG;SG;1
nyi¹⁴ V;PROG;PL;2
ndywiq³ V;PFV;SG;3
ykwenq¹ V;HAB;SG;2
sqwe¹⁴ V;HAB;SG;1
ntykwen³ V;PFV;PL;2
ntqen¹ V;HAB;SG;2
ntyqo¹ V;PROG;SG;1
qya⁴² V;PROG;SG;3
ntqen¹ V;HAB;PL;1+EXCL
sla¹ V;PROSP;PL;1+EXCL
ntsaq⁴² V;PROG;SG;3
sqwe²⁴ V;PROG;SG;1
sqya¹ V;PFV;PL;1+INCL
snyaq¹ V;PROSP;SG;2
nden⁴² V;PROSP;SG;2
yna⁴² V;PROG;PL;3
lo²⁴ V;HAB;SG;1
ntyjanq² V;PFV;SG;2
nlyu¹ V;HAB;SG;2
nkjwi⁴² V;HAB;SG;1
qne⁴² V;PFV;PL;1+INCL
ntyka² V;HAB;PL;1+EXCL
ne⁴² V;PFV;PL;3
ne⁴² V;PROG;PL;1+INCL
lqa³ V;PROSP;SG;3
xkwen¹⁴ V;PROSP;PL;2
yqwe² V;PROG;SG;3
nsuq³ V;HAB;PL;3
kwa³ V;PFV;SG;2
ykuq² V;PROSP;SG;1
saq² V;PROSP;SG;1
ykwanq¹ V;PROG;PL;2
ntykaq¹ V;PROSP;PL;2
ntykwa⁴ V;PROSP;PL;1+INCL
xki¹ V;PFV;SG;1
ngon² V;HAB;PL;3
ndywan² V;PROSP;SG;2
jen² V;HAB;SG;1
nna¹ V;PROSP;SG;2
xin⁴² V;PROSP;PL;1+EXCL
nkqwa¹ V;PROSP;SG;1
ndyu² V;PROSP;SG;1
ndyu² V;HAB;PL;2
ntqo¹ V;PFV;PL;1+INCL
slya²⁴ V;HAB;SG;1
ykwanq¹ V;PROG;PL;1+EXCL
sqyu¹ V;HAB;SG;3
qen⁴ V;PROSP;PL;3
ntsaq⁴² V;PFV;SG;1
ywi⁴² V;PROG;PL;1+INCL
ntykwa⁴ V;HAB;SG;1
nkin² V;PFV;SG;2
slu¹⁴ V;HAB;SG;3
yno¹ V;PROG;PL;3
yo² V;HAB;PL;2
nkwa³ V;PROG;SG;2
ntsa²⁴ V;PROG;SG;3
saq² V;HAB;SG;1
ykwen² V;PFV;SG;2
yna³ V;HAB;SG;1
nton⁴² V;HAB;PL;1+EXCL
ntaq³ V;HAB;PL;2
sqna¹ V;PROG;PL;1+EXCL
ytiq⁴ V;PROSP;SG;3
ntykonq⁴² V;PROSP;SG;3
ntykanq³ V;PFV;PL;1+INCL
ntykwa⁴ V;HAB;PL;1+EXCL
kwi¹ V;HAB;PL;3
slaq¹ V;HAB;SG;3
xka²⁴ V;PROSP;SG;2
ylu³ V;PROG;PL;1+INCL
yo² V;PROG;PL;1+EXCL
xkwen¹⁴ V;PFV;SG;3
yja¹ V;PROG;PL;1+EXCL
xkwan¹⁴ V;PROG;PL;3
sqyu¹ V;PROG;SG;1
qne⁴² V;PROSP;SG;3
skonq³ V;HAB;SG;3
stan¹⁴ V;PROSP;PL;1+INCL
kwan¹ V;PFV;PL;1+EXCL
nkwi¹ V;PROG;SG;3
yjaq³ V;HAB;SG;1
nchin¹ V;PFV;SG;2
styi¹ V;PROG;SG;2
jwi³ V;HAB;PL;3
xkwan¹⁴ V;PROSP;PL;2
xyaq² V;PFV;PL;1+EXCL
yla³ V;PROG;PL;3
xka²⁴ V;PFV;SG;2
skwaq¹ V;PROG;SG;3
nkwa³ V;PFV;SG;1
nyi¹⁴ V;PROSP;SG;1
nkwa³ V;PROSP;PL;2
nya¹⁴ V;PFV;PL;3
ncha¹ V;HAB;PL;1+EXCL
yjoq⁴ V;PROG;PL;1+EXCL
ykwanq¹ V;HAB;PL;1+INCL
qne⁴² V;HAB;PL;1+EXCL
qne¹ V;PROG;SG;3
sqan¹ V;PROG;SG;1
nti¹ V;PROSP;PL;3
ytsaq³ V;HAB;PL;1+INCL
ntyqya¹ V;PROSP;SG;1
nlyu¹ V;PROSP;SG;1
ntyqo¹ V;PROSP;SG;3
snyaq¹ V;HAB;PL;1+EXCL
ntyqo¹ V;PROG;SG;2
nkwi¹ V;PFV;SG;2
yqwe² V;PROSP;SG;3
qa²⁴ V;PROG;PL;1+EXCL
ntsu⁴² V;PROSP;SG;3
swenq³ V;HAB;PL;2
qnyi¹ V;PFV;PL;2
ntiqi¹ V;HAB;PL;1+INCL
slaq¹ V;PROSP;SG;2
yku⁴ V;PFV;PL;1+EXCL
snyaq¹ V;HAB;SG;2
yqo² V;PROG;PL;3
nkonq⁴² V;PFV;PL;3
nlyu¹ V;PROSP;SG;3
ji¹ V;HAB;PL;3
naq¹⁴ V;PROG;SG;3
skonq³ V;PROSP;PL;2
ntkonq³ V;HAB;PL;3
ynaq¹ V;HAB;SG;1
swenq³ V;PROSP;SG;2
slu¹⁴ V;PFV;PL;1+EXCL
qne¹ V;PROSP;PL;1+INCL
yqo² V;PROSP;PL;3
nkqi¹ V;HAB;PL;3
saq² V;PROSP;PL;1+EXCL
sqna¹ V;HAB;PL;1+EXCL
nda³ V;PROG;SG;2
yqu² V;PROG;PL;1+INCL
ne⁴² V;PROSP;SG;3
ntsen⁴² V;PROG;PL;2
lya¹⁴ V;PFV;PL;1+EXCL
ngwa² V;HAB;PL;3
skwan⁴ V;PROSP;PL;2
jlya⁴² V;PROG;PL;1+EXCL
ykwen² V;PFV;PL;2
qnyi¹ V;PROG;PL;2
nton⁴² V;PFV;SG;1
ntiqi¹ V;PFV;PL;1+EXCL
xyaq² V;PROG;PL;2
ncha¹ V;PFV;PL;1+INCL
qya³ V;HAB;PL;2
nchuq⁴ V;PROSP;PL;2
nkqwa¹ V;PROSP;PL;1+INCL
skwan⁴ V;PFV;SG;1
skwa³ V;PFV;PL;2
sqwe¹⁴ V;PROG;PL;2
ntyjyuq¹ V;HAB;PL;1+EXCL
ykwiq⁴ V;PROSP;SG;1
ylu³ V;PFV;SG;2
qu¹⁴ V;HAB;PL;2
ngyla³ V;PFV;SG;3
skonq³ V;PROG;SG;2
sen⁴² V;HAB;SG;3
qen⁴ V;PROG;PL;3
ykwanq¹ V;HAB;PL;1+EXCL
yjaq³ V;HAB;PL;1+EXCL
xyaq² V;HAB;SG;3
sla¹ V;HAB;PL;1+INCL
lo²⁴ V;PROSP;PL;1+EXCL
ntyjyuq¹ V;PROG;PL;1+INCL
nton⁴² V;PFV;PL;3
jen² V;PFV;SG;1
ntykanq³ V;HAB;PL;3
sqwe²⁴ V;PFV;PL;2
slu¹⁴ V;PFV;PL;2
xqan¹ V;PROSP;SG;3
yja¹ V;PFV;PL;3
ntkonq³ V;HAB;PL;2
sne³ V;PROSP;SG;1
ston⁴² V;PFV;SG;1
ndiyan³² V;HAB;SG;1
nyi¹⁴ V;PFV;SG;1
kwa³ V;PROG;PL;1+INCL
ykwiq⁴ V;PROG;PL;3
ntkonq³ V;HAB;SG;1
ntaq³ V;PROSP;PL;1+INCL
xlyu⁴² V;PROSP;SG;2
ston⁴² V;PROG;SG;1
ndlyu⁴² V;PFV;PL;1+INCL
ntqo¹ V;PFV;PL;1+EXCL
nchaq⁴² V;PROG;PL;1+INCL
ngyla³ V;PFV;SG;1
ndlyu¹ V;PROSP;SG;2
nna¹ V;PFV;SG;1
ntqan¹ V;PFV;PL;1+INCL
ntykwen³ V;PROG;PL;1+EXCL
xtya²⁰ V;PROSP;SG;1
son³ V;PFV;PL;1+INCL
ykwaq⁴ V;HAB;SG;2
qen⁴ V;PROG;PL;2
ykwen² V;HAB;PL;2
styi¹ V;HAB;PL;3
ntqan¹ V;PFV;SG;2
yna³ V;PROSP;PL;3
yla³ V;HAB;PL;1+INCL
nkeq³ V;PFV;SG;2
styi¹ V;PFV;PL;3
ntkonq³ V;PROG;SG;3
ntykaq¹ V;PROG;SG;1
qne⁴² V;HAB;SG;3
yja¹ V;PFV;PL;1+INCL
ntqan¹ V;PROG;SG;3
sta¹ V;PROG;SG;2
slaq¹ V;PFV;PL;3
naq¹⁴ V;PROG;SG;1
nkeq³ V;PROSP;SG;1
qu¹⁴ V;HAB;PL;1+INCL
xqan¹ V;PROG;SG;2
xti²⁰ V;PROSP;SG;3
kwi¹ V;HAB;PL;2
ntsiq³ V;PROG;PL;1+EXCL
xin² V;PFV;PL;2
ntsa²⁴ V;PROSP;PL;1+INCL
nkwi¹ V;HAB;PL;2
yno¹ V;PFV;SG;3
ngyla³ V;PFV;PL;1+EXCL
sqwe¹⁴ V;PROG;PL;1+EXCL
nchin¹ V;PROSP;SG;2
yqwe² V;HAB;PL;1+INCL
sne¹⁴ V;PROSP;PL;1+EXCL
yna⁴² V;PROG;SG;2
lkwi¹ V;PROG;SG;1
ylaq⁴ V;PROSP;PL;2
kwi¹ V;PROSP;SG;2
xoq² V;PROSP;SG;2
ylu³ V;PROSP;SG;2
ntykwa⁴ V;PROSP;SG;3
ylaq⁴ V;PROSP;PL;1+EXCL
nglu³ V;HAB;SG;2
ntiqi¹ V;HAB;PL;2
lya¹⁴ V;PFV;SG;3
ntykwan² V;PROG;PL;1+INCL
ndon⁴² V;PFV;SG;2
skwen¹ V;PROSP;SG;2
nduq⁴² V;PFV;PL;1+INCL
ntaq³ V;PROSP;PL;3
yjaq³ V;PROG;PL;2
nda³ V;HAB;SG;3
ntykwan² V;HAB;PL;3
ntyqya¹ V;HAB;PL;1+EXCL
ntqan¹ V;PROSP;PL;2
jwi³ V;PROG;PL;1+INCL
ntiqi¹ V;PROSP;PL;2
ylaq⁴ V;PFV;SG;2
nyi¹⁴ V;PFV;PL;1+EXCL
ntsiq³ V;PFV;PL;1+EXCL
sqan¹ V;PROG;PL;3
ndywan² V;PROSP;PL;3
skanq³ V;HAB;PL;1+EXCL
skwen¹ V;HAB;SG;2
xin⁴² V;PROSP;SG;2
jinyiq² V;HAB;PL;1+EXCL
ntykaq¹ V;PFV;SG;3
nduq⁴² V;PROSP;PL;1+EXCL
lo²⁴ V;PROSP;SG;3
ylaq⁴ V;HAB;SG;3
yqu² V;PROSP;PL;3
yla³ V;HAB;PL;2
sti⁴ V;PROG;PL;2
yja¹ V;HAB;SG;2
saq² V;PROSP;PL;3
slya²⁴ V;PFV;PL;1+EXCL
yna⁴² V;HAB;SG;1
ntyinq³ V;PFV;SG;1
nkwi¹ V;PFV;SG;1
swi²⁰ V;PROSP;PL;3
qa²⁴ V;PROG;SG;3
ntaq³ V;HAB;PL;1+INCL
ntyi¹ V;PROSP;SG;2
nglu³ V;PFV;PL;1+INCL
lya¹⁴ V;HAB;PL;2
ntyja² V;HAB;PL;2
nkjwi⁴² V;PROG;SG;2
skonq³ V;PROG;PL;1+INCL
ntqo¹ V;PROSP;PL;1+EXCL
xtya²⁰ V;PROG;SG;3
sqna¹ V;PFV;SG;1
sqi² V;HAB;PL;1+EXCL
skwaq¹ V;PROSP;SG;1
ndyu² V;HAB;SG;2
nxi² V;HAB;SG;2
ji¹ V;PROSP;PL;2
ndlyu⁴² V;PROG;PL;1+INCL
sqi² V;PFV;SG;2
sqi² V;PROSP;SG;1
nkqwa¹ V;HAB;PL;1+INCL
ngwa² V;PROSP;SG;2
lo²⁴ V;PROG;PL;2
ngya⁴² V;HAB;SG;3
ndon⁴² V;PROSP;PL;1+INCL
ntiqi¹ V;PFV;SG;2
nkqwa¹ V;PFV;PL;3
skwan² V;HAB;SG;1
yjaq³ V;PFV;SG;2
yku⁴ V;PROSP;PL;2
ntyjyuq¹ V;PROG;PL;1+EXCL
ntykanq³ V;PROG;PL;1+EXCL
skonq³ V;PROG;SG;1
slu¹⁴ V;PROSP;SG;3
kwa¹⁴ V;PFV;PL;1+EXCL
nkwi¹ V;HAB;PL;3
ykwanq¹ V;PROG;SG;3
yna³ V;PFV;PL;2
xkwan¹⁴ V;HAB;SG;1
qya⁴² V;PROG;PL;1+INCL
sla¹ V;PROSP;SG;1
ndywan² V;HAB;SG;1
ntykaq¹ V;PROG;PL;3
ntsu⁴² V;PROG;PL;3
ytiq⁴ V;HAB;PL;1+EXCL
skwan² V;HAB;SG;2
nkqwa⁴² V;PROSP;SG;3
ntyqya¹ V;PROSP;SG;3
ntsa²⁴ V;PFV;PL;2
nkqi¹ V;HAB;SG;1
ndyi⁴ V;PFV;SG;3
nkqi¹ V;PFV;PL;2
ykwaq⁴ V;PROG;SG;1
nkin² V;PFV;SG;3
xqwa¹⁰ V;PROSP;PL;3
xqan¹ V;HAB;SG;1
nkeq³ V;PROG;SG;1
ndon⁴² V;PFV;PL;1+EXCL
ntyinq³ V;PROSP;PL;1+INCL
sne¹⁴ V;PROG;PL;1+EXCL
ntson¹⁴ V;PFV;SG;2
ykwiq⁴ V;PFV;SG;1
naq¹⁴ V;PROG;PL;1+EXCL
sqan¹ V;HAB;PL;1+EXCL
la¹ V;PROSP;PL;2
qya⁴² V;PFV;PL;1+EXCL
sna³ V;PFV;PL;1+INCL
ntqan¹ V;PROG;SG;1
ne⁴² V;PROG;PL;1+EXCL
slya²⁴ V;PFV;SG;2
sen¹ V;PFV;SG;2
sqna¹ V;PROG;PL;1+INCL
slu¹⁴ V;PROG;SG;1
nkin² V;HAB;SG;3
ne¹⁴ V;HAB;SG;1
yno¹ V;PROG;PL;1+INCL
swenq³ V;PROSP;PL;2
skwen¹ V;HAB;SG;3
ntqen¹ V;PROG;SG;2
ntyja² V;PFV;SG;3
nton⁴² V;HAB;SG;3
ynaq¹ V;PROSP;PL;1+EXCL
ykwanq¹ V;PFV;SG;1
slaq¹ V;HAB;SG;1
kwan¹ V;PFV;SG;1
yqwe² V;HAB;PL;2
stan¹⁴ V;PROG;SG;2
swenq³ V;PROG;SG;2
ndywan² V;PROG;SG;3
nti¹ V;PROG;PL;3
qne⁴² V;PROSP;SG;2
ntqen¹ V;HAB;PL;3
ntqo¹ V;PROG;PL;3
ntkonq³ V;HAB;SG;3
sqyu¹ V;PROSP;SG;2
ndyu² V;PFV;SG;3
ntyka² V;HAB;SG;2
ykwen² V;PROG;PL;1+INCL
ynaq¹ V;PROSP;SG;1
ntyqo¹ V;HAB;PL;3
ndlyu¹ V;PROG;PL;2
nxi² V;PFV;PL;2
ntyjanq² V;HAB;SG;1
nxin⁴² V;PFV;SG;1
yta⁴ V;PFV;PL;1+EXCL
ston⁴² V;PROG;SG;3
yqu² V;PFV;PL;2
ndywan² V;PROG;PL;2
sta¹ V;PROG;PL;3
sne¹⁴ V;PROG;PL;3
la¹ V;PROSP;SG;2
ntsiq³ V;PFV;PL;3
ytiq⁴ V;PFV;PL;3
ngyla³ V;PROG;PL;1+INCL
ston⁴² V;HAB;PL;1+INCL
ynaq¹ V;PROSP;SG;2
ntqan¹ V;PFV;SG;1
saq² V;HAB;PL;2
nten³ V;PROG;PL;2
ngya⁴² V;PFV;SG;3
ntykonq⁴² V;PFV;SG;2
ndywan² V;PROSP;PL;1+EXCL
nlyu¹ V;PFV;SG;3
yqo² V;PROG;SG;3
ykuq² V;PROSP;PL;1+EXCL
lkwi¹ V;HAB;SG;3
xkuq² V;PFV;SG;3
yjaq³ V;PROSP;PL;3
yqu² V;PROG;PL;2
swi²⁰ V;PFV;SG;1
yjoq⁴ V;PROSP;PL;2
ngyla³ V;PROSP;PL;2
skwen¹ V;PROSP;PL;2
yqwe² V;PROSP;SG;2
ntsiq³ V;PROSP;PL;1+EXCL
sla¹ V;HAB;PL;2
ya⁴² V;PROSP;PL;2
ntyqo¹ V;PROG;SG;3
sqyu¹ V;HAB;SG;1
sqwe¹⁴ V;PROG;SG;3
ntykonq⁴² V;PROG;PL;2
xin² V;PROG;SG;2
ntyqya¹ V;PFV;PL;1+EXCL
ntsen⁴² V;HAB;PL;3
nlyu¹ V;HAB;PL;1+INCL
ytsaq³ V;PROG;PL;2
son³ V;PROG;PL;2
ykwiq⁴ V;PROSP;SG;2
qnyi¹ V;PFV;PL;1+INCL
ykwen² V;HAB;PL;1+INCL
yta⁴ V;PROG;SG;3
ntykwan² V;HAB;SG;1
nchaq⁴² V;PROG;PL;2
yqo² V;PFV;PL;2
ylaq⁴ V;PFV;SG;3
saq² V;HAB;SG;3
ndlyu¹ V;PFV;SG;3
sna³ V;PROSP;PL;2
qa²⁴ V;PROSP;SG;1
jlyo³² V;PROSP;SG;3
qnyi¹ V;PROG;SG;2
ntyqo¹ V;HAB;SG;1
kwi¹ V;HAB;SG;2
ntykonq⁴² V;PFV;PL;3
sqwe²⁴ V;HAB;SG;3
sqwa¹⁴ V;HAB;PL;2
ndlyu⁴² V;PFV;SG;1
yja¹ V;PROG;PL;2
snyaq¹ V;PFV;SG;3
jlya⁴² V;PROG;PL;3
nsuq³ V;PROSP;PL;3
nkwi¹ V;PFV;SG;3
saq² V;PROG;PL;3
ykwaq⁴ V;PFV;SG;2
yqu² V;PROG;PL;3
nkwi¹ V;PROSP;SG;2
sqya¹ V;HAB;PL;3
skanq³ V;PFV;SG;3
qne¹ V;PFV;SG;2
ytsen⁴² V;PROSP;PL;3
ynaq¹ V;PROG;SG;2
xyaq² V;PFV;PL;2
nten³ V;HAB;PL;1+INCL
yjaq³ V;PROG;SG;3
nkjwi⁴² V;HAB;PL;2
xin² V;HAB;PL;1+INCL
ndlyu¹ V;PFV;SG;2
yqan⁴² V;HAB;PL;3
ndywan² V;PROG;SG;1
yta⁴ V;HAB;SG;1
ntykanq³ V;HAB;PL;1+EXCL
swi²⁰ V;PROSP;PL;1+INCL
yjoq⁴ V;PROSP;PL;1+EXCL
ntykaq¹ V;PFV;SG;2
skwen¹ V;PROSP;SG;1
naq¹⁴ V;PROG;PL;2
ston⁴² V;PFV;PL;2
ntyinq³ V;PFV;PL;1+EXCL
jen² V;PFV;SG;2
ynaq¹ V;HAB;PL;1+INCL
yqwe² V;PROG;PL;3
yqu² V;PROSP;SG;2
ylu³ V;PFV;PL;3
ntson¹⁴ V;HAB;PL;2
ngya⁴² V;HAB;PL;2
nlyu¹ V;PROG;SG;2
xki¹ V;PROG;SG;1
xyaq² V;PROSP;PL;1+INCL
nchaq⁴² V;PROSP;PL;3
nton³ V;PROSP;SG;3
ston⁴² V;PFV;SG;2
lqa³ V;PFV;PL;1+INCL
nchuq⁴ V;HAB;PL;1+EXCL
ntykanq³ V;HAB;SG;1
kwa¹⁴ V;PROSP;SG;3
ntiqi¹ V;PFV;SG;1
qne⁴² V;PROSP;PL;1+EXCL
yla³ V;PFV;SG;3
ntiqi¹ V;PROSP;PL;1+INCL
xkwan¹⁴ V;PROG;PL;1+INCL
yna⁴² V;PFV;SG;3
ncha¹ V;PROSP;PL;1+EXCL
sqna¹ V;PROSP;PL;1+INCL
ntkonq³ V;PROG;SG;2
ykwanq¹ V;HAB;PL;2
ndlyu⁴² V;PROG;SG;3
ntykwen³ V;PROG;SG;3
ngwa² V;PFV;PL;3
sqwa¹⁴ V;PFV;SG;3
nkwa³ V;PROSP;SG;2
slaq¹ V;HAB;PL;1+INCL
lu¹ V;PFV;PL;1+INCL
xki¹ V;PROSP;SG;2
ynaq¹ V;PFV;PL;1+INCL
xtyiq¹⁰ V;PROG;SG;2
qu¹⁴ V;PROSP;SG;2
nden⁴² V;PROSP;SG;3
nyi¹⁴ V;HAB;PL;3
la¹ V;PROG;SG;1
nton³ V;PFV;PL;1+EXCL
qnyi¹ V;PROG;PL;3
ntyi¹ V;PROG;PL;1+INCL
ntson¹⁴ V;HAB;SG;1
ntykwa⁴ V;PROG;SG;3
lu¹ V;HAB;PL;1+EXCL
ntykwan¹⁴ V;PROG;SG;3
sta¹ V;PFV;SG;2
ntiqi¹ V;PROG;PL;3
ntyqya¹ V;PFV;PL;2
lya¹⁴ V;PROG;SG;2
slaq¹ V;PROG;PL;1+INCL
ndyi⁴ V;HAB;SG;2
nchuq⁴ V;HAB;PL;1+INCL
naq¹ V;HAB;PL;1+EXCL
ngwa² V;PFV;PL;2
ntyka² V;PFV;PL;1+EXCL
qya³ V;PROG;PL;3
skwan⁴ V;PFV;PL;3
ndlyu⁴² V;HAB;PL;1+INCL
ntsiq³ V;HAB;PL;3
ntyjyuq¹ V;PROSP;PL;1+EXCL
yjaq³ V;PFV;PL;3
sqwe¹⁴ V;PFV;SG;3
ngon² V;HAB;SG;3
skanq³ V;PFV;PL;1+EXCL
jlya⁴² V;PROSP;PL;1+INCL
ji¹ V;PROSP;PL;3
ngyla³ V;HAB;PL;1+INCL
skonq³ V;PROG;PL;3
xka²⁴ V;PROSP;PL;1+INCL
kwi¹ V;PFV;SG;1
ntykwan¹⁴ V;PROG;SG;2
sne³ V;PROSP;PL;3
skwen¹ V;PROSP;SG;3
nkwi¹ V;PROG;SG;2
lu¹ V;PROSP;SG;1
ntqen¹ V;PFV;SG;1
yqu² V;HAB;PL;2
lu¹ V;PROSP;PL;3
xti²⁰ V;HAB;SG;1
styi¹ V;PFV;PL;1+EXCL
xtyiq¹⁰ V;PFV;PL;2
qne¹ V;PROG;PL;1+EXCL
ngya⁴² V;PROG;SG;3
nsuq³ V;HAB;SG;1
ntsu⁴² V;PROG;PL;1+INCL
yku⁴ V;PROG;PL;1+INCL
nkonq⁴² V;PFV;PL;1+EXCL
ntkonq³ V;PROSP;SG;2
sqwe¹⁴ V;HAB;PL;1+INCL
ntqan¹ V;HAB;SG;3
skwan⁴ V;PROSP;SG;1
yku⁴ V;PROSP;SG;1
ngwa² V;PROG;PL;1+EXCL
xtyiq¹⁰ V;PROG;PL;2
nsuq³ V;PFV;PL;1+EXCL
ntqen¹ V;PROG;PL;3
ntykwa⁴ V;PROG;PL;1+INCL
ji¹ V;PROG;PL;2
jinyiq² V;HAB;PL;1+INCL
saq² V;PROSP;PL;1+INCL
ntykwa⁴ V;HAB;PL;1+INCL
nkwi¹ V;HAB;PL;1+EXCL
ntykonq⁴² V;PROSP;PL;2
ndywan² V;HAB;SG;2
sqan¹ V;HAB;SG;3
sqi² V;PROG;PL;3
ntyi¹ V;PROG;SG;2
skwan⁴ V;PROG;SG;1
skwa³ V;PROG;SG;1
ngya⁴² V;PROSP;PL;1+EXCL
ntson¹⁴ V;PFV;PL;1+EXCL
nten³ V;PFV;SG;2
yla³ V;PROG;PL;1+INCL
skonq³ V;PROSP;PL;3
nglu³ V;HAB;PL;3
ylaq⁴ V;PROG;PL;1+INCL
sta¹ V;HAB;PL;2
lo²⁴ V;HAB;SG;2
jlyo³² V;HAB;SG;1
xku²⁰ V;HAB;SG;3
skwen¹ V;PFV;SG;2
ngwa² V;PROG;PL;2
nduq⁴² V;HAB;PL;2
qnyi¹ V;HAB;SG;3
ya⁴² V;PFV;SG;1
xta¹ V;PFV;PL;2
jwi³ V;HAB;PL;2
jinyiq² V;HAB;SG;2
nchaq⁴² V;PFV;PL;1+INCL
son³ V;PROSP;PL;1+EXCL
qan⁴ V;PROG;SG;3
nti¹ V;HAB;PL;2
jwi³ V;PROG;PL;1+EXCL
son³ V;PFV;SG;3
nton³ V;PROG;SG;2
qan⁴ V;PFV;SG;1
ntyinq³ V;PROG;PL;2
nkonq⁴² V;HAB;SG;3
nlyu¹ V;PROSP;PL;1+INCL
ston⁴² V;HAB;SG;2
qa²⁴ V;PROSP;PL;2
ntsen⁴² V;PFV;PL;1+INCL
nton³ V;PFV;SG;1
jinyiq² V;PROSP;SG;1
xqwa¹⁰ V;PROSP;PL;2
nsuq³ V;PFV;PL;2
qya³ V;PROG;PL;1+EXCL
qen⁴² V;PFV;SG;3
ncha¹ V;PROSP;SG;1
sen⁴² V;PROG;SG;2
sqna¹ V;PFV;PL;3
ngon² V;PFV;PL;1+EXCL
nlyu¹ V;PFV;PL;1+EXCL
ji¹ V;HAB;SG;2
ndon⁴² V;HAB;SG;1
ntyi¹ V;PROG;SG;1
ytsaq³ V;PROG;PL;1+EXCL
ntsaq⁴² V;PROSP;SG;2
ndyi⁴ V;PROG;SG;3
yno¹ V;HAB;SG;3
ntsiq³ V;PROG;SG;1
yla³ V;HAB;SG;3
nchuq⁴ V;PROG;PL;3
sqi² V;PROG;PL;2
kwa¹⁴ V;PFV;SG;2
ykwenq¹ V;HAB;SG;3
sne¹⁴ V;HAB;SG;2
nduq⁴² V;PROSP;SG;3
skwen¹ V;HAB;PL;1+INCL
yqwi⁴ V;PROG;SG;3
xkuq² V;PROSP;SG;2
xin² V;PROSP;PL;2
qen⁴ V;PROSP;SG;3
sne¹⁴ V;HAB;SG;3
ne¹⁴ V;HAB;PL;3
ntyka² V;PFV;SG;3
xqwa¹⁰ V;HAB;SG;2
nkya⁴² V;PROG;SG;1
sti⁴ V;PROSP;PL;2
ncha¹ V;PROSP;SG;2
qya⁴² V;PROSP;PL;3
ntyjanq² V;PFV;SG;3
skwan⁴ V;HAB;PL;1+INCL
ntyi¹ V;PROSP;PL;1+EXCL
nkeq³ V;PROSP;PL;1+EXCL
yku⁴ V;HAB;PL;1+EXCL
xin⁴² V;HAB;PL;3
yo² V;PROSP;SG;2
ykwenq¹ V;PROSP;PL;1+EXCL
nya¹⁴ V;HAB;SG;1
qan⁴ V;PROSP;PL;2
ndlyu¹ V;PROG;SG;1
yo² V;HAB;PL;1+INCL
nchaq⁴² V;PROG;SG;3
jinyiq² V;HAB;PL;3
nge⁴² V;HAB;PL;1+EXCL
xin² V;PROG;PL;1+EXCL
nyi¹⁴ V;PFV;SG;2
xne¹⁰ V;PROSP;SG;3
son³ V;PROSP;PL;3
yna⁴² V;PROSP;PL;1+EXCL
ntaq³ V;PROSP;SG;3
jinyiq² V;PFV;PL;1+INCL
yjwiq² V;HAB;SG;2
yo² V;PFV;SG;2
yjoq⁴ V;HAB;PL;3
ykwen² V;PROSP;SG;2
ntsiq³ V;PROSP;PL;3
ywi⁴² V;PROG;SG;1
kwan¹ V;PROSP;PL;1+INCL
ntyjyuq¹ V;PFV;SG;3
ngon² V;PROG;SG;3
nge⁴² V;PROSP;PL;3
xkuq² V;PROSP;SG;3
ntsaq⁴² V;PFV;SG;2
sne³ V;PROG;SG;2
skwaq¹ V;PFV;SG;3
qne⁴² V;PROG;SG;2
ntyja² V;PFV;PL;1+EXCL
sqya¹ V;PROSP;PL;2
nkwa³ V;PFV;SG;2
yku⁴ V;PROSP;PL;1+EXCL
qnyi¹ V;PFV;SG;2
snyaq¹ V;PROSP;PL;2
nduq⁴² V;PROG;SG;3
jlya⁴² V;PFV;SG;1
yjaq³ V;HAB;PL;2
ya⁴² V;PROG;SG;1
ntykaq¹ V;PROG;PL;2
qen⁴ V;PROSP;SG;1
ntykwan² V;PFV;PL;1+INCL
sta¹ V;HAB;SG;2
sqna¹ V;HAB;PL;3
qan⁴ V;PROSP;PL;1+EXCL
nden⁴² V;PROG;PL;1+EXCL
nyi¹⁴ V;HAB;PL;2
qya⁴² V;PROSP;PL;1+EXCL
ngyla³ V;HAB;SG;1
ntqen¹ V;PFV;PL;3
ykwen² V;PROSP;PL;1+EXCL
xta¹ V;PROG;SG;2
ngya⁴² V;PFV;PL;3
yqo² V;PROG;PL;1+INCL
naq¹⁴ V;PROSP;PL;1+EXCL
ndon⁴² V;PROSP;PL;3
ncha¹ V;HAB;SG;2
ntykonq⁴² V;PROG;SG;1
ykwiq⁴ V;PFV;PL;2
kwan¹ V;HAB;PL;1+EXCL
ntykwan² V;PROG;PL;3
sne³ V;HAB;PL;2
nya¹⁴ V;PROSP;PL;3
ylu³ V;HAB;PL;2
ynaq¹ V;PFV;PL;1+EXCL
ntqan¹ V;PROG;PL;3
ytsen⁴² V;PROSP;SG;1
ykwenq¹ V;PROG;PL;1+EXCL
ntsaq⁴² V;HAB;SG;1
nkqwa¹ V;HAB;SG;2
ntykwen³ V;PROG;PL;2
yqo² V;PROSP;SG;3
sna³ V;PROG;PL;3
sen¹ V;PROSP;SG;1
lu¹ V;PROG;SG;3
nten³ V;PROSP;SG;1
nden⁴² V;PROG;SG;2
ntqen¹ V;PFV;SG;3
lo²⁴ V;PFV;PL;2
ntson¹⁴ V;HAB;PL;3
yna³ V;PROSP;PL;2
saq² V;PROG;SG;3
nkqi¹ V;PFV;PL;1+EXCL
ntson¹⁴ V;PROG;PL;1+EXCL
sti⁴ V;HAB;SG;1
skwan⁴ V;PROSP;PL;1+INCL
ykwiq⁴ V;PROG;PL;1+EXCL
nden⁴² V;PROG;PL;2
xqwa¹⁰ V;HAB;SG;1
ntykwen³ V;HAB;PL;2
sen¹ V;PROG;SG;1
nchuq⁴ V;PROSP;PL;1+EXCL
ntyka² V;PROSP;PL;1+INCL
sqwe¹⁴ V;HAB;PL;1+EXCL
yna³ V;PROG;PL;1+EXCL
xne¹⁰ V;PFV;PL;3
ykwen² V;HAB;SG;2
sen¹ V;HAB;SG;2
nton⁴² V;PFV;PL;1+EXCL
ngon² V;PROSP;PL;3
ntyka² V;PROG;PL;2
slu¹⁴ V;PROSP;PL;1+INCL
yjaq³ V;PROSP;SG;1
ntkonq³ V;PROSP;SG;3
ne⁴² V;HAB;PL;3
ntykaq¹ V;PROG;SG;3
yqwi⁴ V;HAB;SG;1
nkwa³ V;PROG;SG;3
qne¹ V;PROSP;SG;2
ntyi¹ V;PFV;SG;1
ntyka² V;PFV;SG;2
ntykwa⁴ V;HAB;PL;2
kwa³ V;PROG;SG;2
ntykwan² V;HAB;PL;1+EXCL
ngyla³ V;HAB;PL;1+EXCL
xta¹ V;PROSP;PL;2
skwa³ V;PROG;PL;1+EXCL
swi²⁰ V;PROSP;SG;3
ykwiq⁴ V;HAB;PL;2
nkonq⁴² V;HAB;PL;1+EXCL
yqan⁴² V;PFV;SG;2
sqya¹ V;PROG;PL;2
yqan⁴² V;PROSP;PL;3
qen⁴² V;PFV;SG;2
ntykwen³ V;PROSP;PL;1+EXCL
yna³ V;PFV;PL;3
|
433e982e1e112db224a663c00283a005d8c2575a | 449d555969bfd7befe906877abab098c6e63a0e8 | /869/CH14/EX14.2/14_2.sce | 997472cadeaee8f6ae799208dce8d8222e21dc93 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 269 | sce | 14_2.sce | clc
//initialisation of variables
P= 10000 //lb
A= 11.77 //in^2
Z= 51.9 //in^3
x= 5 //ft
y= 12 //ft
//CALCULATIONS
S1= -P/A
S2= P*x*y/Z
Sc= S1-S2
St= S1+S2
//RESULTS
printf ('Axial stress at c= %.1f psi',Sc)
printf (' \n Axial stress at t= %.1f psi',St)
|
6ff9383c93b93a65482f444d586338f44aa98deb | 449d555969bfd7befe906877abab098c6e63a0e8 | /196/CH6/EX6.9/example_6_9.sce | feca6bac40528355f69b02bb813fb7e83f21adbc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | example_6_9.sce | //Chapter 6
//Example 6-9
//ProbOnFrequency
//Page 164
clear;clc;
//Given
Ri = 10*10^3 ;
Ci = 0.1*10^-6 ;
Ei = 2 ;
Vref = 10 ;
f = Ei / (Ri*Ci*Vref) ;
printf ( "\n\n Frequency is %.4f Hz ", f ) |
ce8dc5a2a708b1c5d985f34fa7bd94bd96c7c002 | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH6/EX6.4.b/6_4_soln.sce | d565ff5a0f2e8eda1074e77752f7d19484884b92 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 682 | sce | 6_4_soln.sce | clc;
pathname=get_absolute_file_path('6_4_soln.sce')
filename=pathname+filesep()+'6_4_data.sci'
exec(filename)
// Solution:
// For constant velocity,Cylinder Force,
F=W; //lb
// Rate of change of velocity,
a=(v-u)/t; //ft/s^2
// Force required to accelerate the weight,
F_acc=(F/32.2)*a; //lb
// Therefore, Cylinder Force,
F_cyl=(F+F_acc); //lb
// Results:
printf("\n Results: ")
printf("\n The Cylinder Force at constant velocity is %.0f lb.",F)
printf("\n The Cylinder Force required to accelerate the Body is %.0f lb.",F_cyl)
printf("\n The answer in the program is different than that in textbook. It may be due to no.s of significant digit in data and calculation")
|
322484a2269be4b614d98628ea844b781c076ad4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH14/EX14.4/eg14_4.sce | 3ed430fa54b4432010b24661ecd53eb72b330eda | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 448 | sce | eg14_4.sce | clear;
clc;
z12=.06+(%i)*.18;
z23=.08+(%i)*.24;
z13=.03+(%i)*.09;
n=3;
m=3;
y=zeros(n,m);
y(1,2)=1/z12;
y(1,3)=1/z13;
y(2,3)=1/z23;
for i=1:1:n
for j=1:1:m
y(j,i)=(y(i,j)+y(i,j))/2;
end
end
Y=y;
for i=1:1:n
for j=1:1:m
if (i==j) then
for k=1:1:n
y(i,i)=y(i,i)+Y(j,k);
end
else
y(i,j)=y(i,j)*(-1);
end
end
end
disp(y)
|
633cb9ecdb7ec90cba1ef27a3ac1d04fe788f458 | 899cecef18712265c22e100bf72286df1ec5fb65 | /Asgn3/Q3.sci | 7a3dc257feb35e5be7ac03c4297e5c65be6264bf | [] | no_license | ajaykumarkannan/Speech-Signal-Processing-and-Coding | 449679bef8bdf0215e96521163774f88d8a6b41e | c1d371b2866239a89312a0f64db3d61cc0b1011c | refs/heads/master | 2020-05-17T17:02:33.143586 | 2012-11-15T12:48:40 | 2012-11-15T12:48:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,153 | sci | Q3.sci | clear;
exec('hz2mel.sci');
exec('mel2hz.sci');
[y, Fs, bits] = wavread('Sound4_16hz.wav');
y = y(1,:); // Had recorded in stereo - Converting to mono
y = y./(abs(max(y))); // Normalizing the signal
N = Fs * 30 /1000; // 30ms block size
shift = Fs * 10 /1000;; // 10ms shift
// Calculating the melbands
NBands = 26;
melbands = linspace(1,hz2mel(Fs/2),NBands);
mfcc = zeros(length(melbands)-2, (length(y)-N)/shift);
fhz = Fs* ((1-N/2):N/2) / N;
fhzpos = fhz;
fhzpos(fhz < 0) = [];
Emel = zeros(length(melbands) - 2, (length(y)-N)/shift);
exec('mel_energy.sci');
for i = 1:shift:(length(y)-N)
temp = y(i:(i+N-1));
Y(:,ceil(i/shift)) = fftshift(log(abs(fft(temp))))';
temp = Y(:,ceil(i/shift));
temp(fhz < 0) = [];
if(i ~= 1) then
Emel(:, ceil(i/shift)) = mel_energy(temp, fhzpos, melbands, 0);
else
Emel(:, ceil(i/shift)) = mel_energy(temp, fhzpos, melbands, 1);
end
mfcc(:, ceil(i/shift)) = idct(Emel(:, ceil(i/shift)));
end
scf();
plot(mfcc(:,50));
t = mfcc(:,1:50);
s = size(t);
a = 1:s(1);
b = 1:s(2);
scf();
subplot(1,2,1);
plot3d(a, b,t);
title('MFCC of first fifty frames');
xlabel('Band number');
ylabel('Frame Number');
zlabel('Value of MFCC');
a = gca();
a.rotation_angles=[89.8 -60];
a.tight_limits = "on";
t = Emel(:,1:50);
s = size(t);
a = 1:s(1);
b = 1:s(2);
subplot(1,2,2);
plot3d(a, b,t);
title('Energy of first fifty frames');
xlabel('Band number');
ylabel('Frame Number');
zlabel('Energy');
a = gca();
a.rotation_angles=[85.9 -48.8];
a.tight_limits = "on";
t = Y(:,1:50);
scf();
TotalT = 1:50;
[X Yplot] = meshgrid(fhz, TotalT);
stft = Y(1:length(fhz),1:length(TotalT));
surf(X, Yplot, stft');
h=gce(); //get handle on current entity (here the surface)
k=gcf(); //get the handle of the parent figure
k.color_map=hsvcolormap(1024);
h.color_flag=1; //color according to z
h.color_mode=-2; //remove the facets boundary by setting color_mode to white color
title('Magnitude Spectrum of first fifty frames');
ylabel('Frame Number');
xlabel('F - Frequency');
a = gca();
a.data_bounds=[0,min(TotalT);max(fhz), max(TotalT)];
a.tight_limits = "on";
|
b6526a26a0ee7c1e60626c8d52147e50a8c291b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3446/CH2/EX2.6/Ex2_6.sce | 3834b8a80985719027d1fa1c3497a309966cf6e7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 948 | sce | Ex2_6.sce | // Exa 2.6
//To find traffic intensity in Erlangs and CCS during eight hour period and busy hour(4:00 PM to 5:00 PM).
//Refer-Table 2.2(page no 28): Traffic on customer line between 9:00PM and 5:00PM
clc;
clear all;
time=8; //in hours
calls=11; //no of calls in 90mins period
//solution
CR=calls/time; //call arrival rate in calls/hour
tavg=(3+10+7+10+5+5+1+5+15+34+5)/11; //average call holding time in mins per call
I= CR*(tavg/60); //traffic intensity in Erlangs
printf('Traffic Intensity during eight hour period is %.3f Erlangs = %.1f CCS \n',I,I*36);
//For Busy Hour i.e between 4:00PM and 5:00PM
CRB=2; //call arrival rate during busy hour in calls/hour(from table 2.2)
tavgB=(34+5)/2; //average holding time during Busy Hour in mins/call (from table 2.2)
IB=CRB*(tavgB/60); //Traffic Intensity during Busy Hour
printf(' Traffic Intensity during busy hour is %.2f Erlangs = %.1f CCS',IB,IB*36);
|
a4f5de1fe21a8c06dc5f0075c3d807921d88dbd7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH6/EX6.5/Ch06Ex5.sce | 444ea5d6d50d91aa473ea836ae37d20d49909fc5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 512 | sce | Ch06Ex5.sce | // Scilab Code Ex6.5: Page-371 (2011)
clc;clear;
lambda = 3.6e-011;....// Wavelength of X-rays, m
n = 1; // Order of diffraction
theta = 4.8; // Angle of diffraction, degrees
// Braggs equation for X-rays is n*lambda = 2*d*sin(theta), solving for d
d = n*lambda/(2*sind(theta)); // Interplanar spacing, m
printf("\nThe interplanar separation of atomic planes in the crystal = %4.2f angstrom", d/1e-010);
// Result
// The interplanar separation of atomic planes in the crystal = 2.15 angstrom |
685bf4e9d36de13a5e7f85faf89583a1cfee63ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH6/EX6.4/ex6_4.sce | e7c4cb4dc51322145e5bb453f6a2408849560d34 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 225 | sce | ex6_4.sce | clc;
clear all;
x = 2.5e-2; // Thickness of material in meters
u = 2; // Linear absorption coefficient per cm
dh = log(2)/2;//Half value thickness of the specimen
disp('cm',dh,'Half value thickness of the specimen is')
|
963c95b42e291af7e38c481d2089bb2dcc64de4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH29/EX29.3/29_3.sce | 963b16fbe1973bdeb050b7e5961ed475900aad27 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 319 | sce | 29_3.sce | clear//
//Variables
Av = 1000.0 //Voltage gain
A1v = 10.0 //Voltage gain with negative feedback
//Calculation
beta = (Av/A1v - 1) / Av //feedback ratio
//Result
printf("\n The fraction of the output that is feedback to the input is %0.3f .",beta)
|
e810fcf0497c882e581d5dd1e350a389231f3439 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set11/s_Fundamentals_Of_Electronic_Devices_And_Circuits_J._B._Gupta_2444.zip/Fundamentals_Of_Electronic_Devices_And_Circuits_J._B._Gupta_2444/CH1/EX1.14/ex1_14.sce | 00b6ba737dbfe5825a6a133278058c0c4dbef62d | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 232 | sce | ex1_14.sce | errcatch(-1,"stop");mode(2);// Exa 1.14
;
;
format('v',7)
// Given data
I_electrons = 3/4;
I_holes= 1/4;
v_h = 1;
v_e = 3;
ratio = (I_electrons/I_holes)*(v_h/v_e);
disp(ratio,"Ratio of electrons to holes is");
exit();
|
2492278aeda5d78258693567333b7904e72b0413 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH5/EX5.12/Ex5_12.sce | 21a720919f966447571e73614812d900d91a6cc0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 366 | sce | Ex5_12.sce | //Chapter 5: Chemical Kinetics and Catalysis
//Problem: 12
clc;
// Solution
mprintf("Let the initial concentration be 100, when x = 25,t = 30 minutes\n")
a = 100
x = 25.0
t = 30
K = 2.303 / t * log10(a / (a - x))
t05 = 0.683 / K
t = 2.303 / K * log10(a / x)
mprintf(" K = %.2e / min\n",K)
mprintf(" T0.5 = %.2f min\n",t05)
mprintf(" t = %.1f min",t)
|
22628bbb2f7e0d2ef89d4579500a46dac2534915 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2342/CH5/EX5.36/EX5_36.sce | 83939c1397b98c782d018cf96dd3fa3202103526 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 557 | sce | EX5_36.sce | // Exa 5.36
format('v',5)
clc;
clear;
close;
// Given data
V_GSth= 2;// in V
k= 2*10^-4;// in A/V^2
V_DD= 12;// in V
R_D= 5*10^3;// in ohm
I_D= poly(0,'I_D');
V_DS= V_DD-I_D*R_D;// in V
// Evaluation the value of I_D by using polynomial method,
I_D= I_D-k*(V_DS-V_GSth)^2;
I_D= roots(I_D);// in A
// For I_D(1), V_DS will be negative, so discarding it
I_D= I_D(2);// in A
// The value of V_DS,
V_DS= V_DD-I_D*R_D;// in V
I_D= I_D*10^3;// in mA
disp(I_D,"The value of I_D in mA is : ")
disp(V_DS,"The value of V_DS in volts is : ")
|
49f3956e6134f91aa045ff6c47d3428e0ae00359 | 5887829f5a0a005033807cf7dc4fb7231eb280ec | /Listing/chapter 6/Listing611.sce | 8cadf67d011787e9d4ed0bcfe45116fa52de21c1 | [] | no_license | joaolrneto/learning_scilab | 78ecc0019f167b57bc35647c4ac785ece01e443e | 9624c9a6736860a8a836b0f801256b6224756585 | refs/heads/main | 2023-03-17T22:17:51.853368 | 2021-03-15T20:58:34 | 2021-03-15T20:58:34 | 344,478,059 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 87 | sce | Listing611.sce | [fd,SST,Sheetnames,Sheetpos] = xls_open('SCI/modules/spreadsheet/demos/xls/Test1.xls')
|
c4687030af613df1cd25ad1aa4a36fc2044cf31d | f0f1b6e39dc4e4ab53472ba68e36550537f95470 | /test/testcases/directed/tan.tst | bc1d35639e71f76e9674095e07931439accf6354 | [
"Apache-2.0"
] | permissive | miRackModular/optimized-routines | 1cfa167ba8b830478fda27329c47794250e202e9 | 2f9e5ce5bbaaf3bf025dc17d123388a12d8ba6b9 | refs/heads/master | 2020-03-16T17:38:17.640927 | 2018-05-10T03:02:21 | 2018-05-10T03:02:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,299 | tst | tan.tst | ; tan.tst - Directed test cases for tangent
;
; Copyright (C) 1999-2015, ARM Limited, All Rights Reserved
; SPDX-License-Identifier: Apache-2.0
;
; Licensed under the Apache License, Version 2.0 (the "License"); you may
; not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
; WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
;
; This file is part of the Optimized Routines project
func=tan op1=7ff80000.00000001 result=7ff80000.00000001 errno=0
func=tan op1=fff80000.00000001 result=7ff80000.00000001 errno=0
func=tan op1=7ff00000.00000000 result=7ff80000.00000001 errno=EDOM status=i
func=tan op1=fff00000.00000000 result=7ff80000.00000001 errno=EDOM status=i
func=tan op1=00000000.00000000 result=00000000.00000000 errno=0
func=tan op1=80000000.00000000 result=80000000.00000000 errno=0
func=tan op1=00000000.00000001 result=00000000.00000001 errno=0 status=ux
func=tan op1=80000000.00000001 result=80000000.00000001 errno=0 status=ux
|
6936c7238f07f5fdb56a64e6cf470bfef8dec0e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH19/EX19.5/example5_sce.sce | 496dab5c0d3066a7b13d9945e7f8053b12441d11 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 315 | sce | example5_sce.sce | //chapter 19
//example 19.5
//page 824
printf("\n")
printf("given")
Po=4;nt=.8;Vcc=30;Vp=Vcc;Rl=16;
P0=Po/nt
rl=(Vp)^2 /(2*P0)
rl=4*rl
disp("transformer specification Po=4 ,Rl=16 rl=360")
Vce=2*Vcc
Ip=(2*P0)/Vp
Pi=Vcc*.636*Ip
Pt=.5*(Pi-P0)
disp(" transistor specification is Py=.68W Vce=60 Ip=333mA") |
351f67d587c5db62b12d4960f04b48ca1ce4a4ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2492/CH2/EX2.6/ex2_6.sce | 549de380cd2bcb042a8af101ba4179efe3488db7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 430 | sce | ex2_6.sce | // Exa 2.6
format('v',9)
clc;
clear;
close;
// Given data
R_L = 50;// in ohm
V = 10;// in V
R = 5;// in ohm
V_D = (V*R)/(R_L+R);// in V
R_D = (R_L*R)/(R_L+R);// in ohm
I_D = V_D/R_D;// in A
I_D = I_D * 10^3;// in mA
plot([V_D,0],[0,I_D])
xlabel("V_D in volts");
ylabel("I_D in mA");
title("DC load line");
disp("DC load line shown in figure")
slope = -1/R_D;
disp(slope,"The slope of the dc load line is : ");
|
eb2b0732a2650144b9094211b9ee82378feb4dca | 46946777ab7d7d744ec339e9a08c5b1b697c6474 | /Model/trialsum.sce | 3e0defd54f2803700689fad88502cfbdf96e94f7 | [] | no_license | adityaraj52/Boids_Simulation | 1a5a0ce114541c56269c446b217158afcd0a2297 | 817b655dfd3810fed76aa28c69a2fe81e830c8e8 | refs/heads/master | 2020-04-18T04:38:10.799232 | 2016-11-18T12:14:10 | 2016-11-18T12:14:10 | 67,549,503 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,716 | sce | trialsum.sce | //Calculate the absolute value of a vector
function res= calculate_abs(a)
res = sqrt(a(1)^2 + a(2)^2)
endfunction
importXcosDiagram("SCI/modules/xcos/demos/ABM/final_combined_block.zcos")
num_agents =6;
pos = floor(10*rand(2,num_agents));
vel = floor(5*rand(2,num_agents));
agent_number=0;
max_vel = 5;
flock = 100;
a=0;
tmp=[0,0];
plot(0,0)
f=get("current_figure")
axes=get("current_axes")//get the handle of the newly created axes
axes.axes_visible="off"; // makes the axes visible
axes.box="on"; // makes the box off
axes.data_bounds=[0,0;200 200]; //specify the bounding box for the plot
axes.grid=[1,1];
axes.thickness=2;
typeof(scs_m) //The diagram data structure
//This diagram uses 3 context variables :
// vel : the velocity matrix
// pos: the position matrix
// agent_nnumber: the id of the agent
// flock: the flocking distance of the birds
scs_m.props.context //the embedded definition
runonce =1;
while agent_number>-1
//disp(agent_number+1)
// batch simulation with the parameters embedded in the diagram
scs_m.props.context //the embedded definition
xcos_simulate(scs_m, 4);
if (calculate_abs(P.values)>max_vel) then
P.values(1)= max_vel*(P.values(1)/calculate_abs(P.values));
P.values(2)= max_vel*(P.values(2)/calculate_abs(P.values));
end
vel(:,agent_number+1)=vel(:,agent_number+1)+(P.values)';
pos(:,agent_number+1)=pos(:,agent_number+1)+vel(:,agent_number+1);
agent_number= agent_number+1;
if(agent_number == num_agents) then
delete(f.children.children)
plot(axes,(pos(1,:)),(pos(2,:)),'*','markerfac','red','markersiz',5)
agent_number=0;
runonce = 0;
end
end
|
43f2624b5996f9bd22b3e59254cda0cf7605bf99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH16/EX16.17/Ex16_17.sce | e36e9c68066f278c32413abc92687a04d7d42d78 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sce | Ex16_17.sce | //chapter16
//example16.17
//page357
Vcc=10 // V
R1= 10 // kilo ohm
R2=10 // kilo ohm
Vbe=0.7 // V
Re=5000 // ohm
V2=Vcc*R2/(R1+R2)
Ve=V2-Vbe
Ie=Ve/(Re/1000) // in mA
re_dash=25/Ie
Av=Re/(re_dash+Re)
printf("voltage gain = %.3f \n",Av)
|
09cf0901a7a0f6dd75b2273650cbed72a165c4bb | 358500bb97c17245f609c658ce3c029bf6f82c70 | /fourier-series/Workshop-1_Item-3.sce | 25b6033f99e0de164fb52fcfbf18eabd436ef79d | [] | no_license | wilson911013/information-theory-UNAL | 4a3bf7ce1804ec6bfba261bb7e661895e1fe81d4 | 2d22817275f7b58dab0daa660725afde42da939e | refs/heads/master | 2021-08-26T09:45:25.005995 | 2017-11-23T04:24:36 | 2017-11-23T04:24:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | sce | Workshop-1_Item-3.sce | function z = original_f(x)
if x < 0 then
disp(x)
z = 0
else
z = %pi - x
end
endfunction
function z = f(x)
z = 0
endfunction
x = [-1*%pi : 0.01 : %pi]
y = f(x)
plot(x,y)
|
700ee862613b2ce39016a75026485bec26a96aeb | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH5/EX5.20/5_20.sci | 5ea25681a70187880cb8c3cc27fc05aab2a1afe7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 100 | sci | 5_20.sci | // Calculate the time
clc;
th=30;
th0=50;
tc=120;
t=-120*[log(1-(th/th0))];
disp(t,'time(s)=') |
d104c2ba3c3f37c7d68dbc2182059492a6c754e6 | 1dd2853863fb9c110f27c471770883b7e0451472 | /TEST/htry.tst | c4a7f661979c4e25b495c6dfecb9939739a1d466 | [
"MIT"
] | permissive | ihgazni2/dlixhict-didactic | a793299373f2fe14acf5ebefcd22c6af1fc25277 | f13869ea9c4a5b14d5c595bc6942bca9098b15df | refs/heads/master | 2021-01-19T17:20:58.111276 | 2020-06-27T11:34:28 | 2020-06-27T11:34:28 | 82,447,364 | 8 | 1 | null | 2017-05-10T01:31:36 | 2017-02-19T09:09:30 | Python | UTF-8 | Scilab | false | false | 241 | tst | htry.tst |
from xdict.jprint import pobj
from xdict.jprint import pdir
from xdict.cmdline import Hentry
# init a Hentry
htry = Hentry(html_text=html_text)
# search via cmd 'ead met'
#nested output
html_entry = htry.query('ead met',style='nested')
|
c83da246554ee25392f92a7cdf3bcb6756991486 | 39b357bcd82af01ab069c0a12ca520c112ecd5fa | /mlt/presets/filter/dynamicText/normal-shadow.tst | 4dd5f5bf1c04f85a6b3d070c4949d66affb398ad | [] | no_license | 0TemetNosce0/moviemator_qml | 6963eed2d455e52b8c0e613fe3c3902c33423e2a | b0d2eaef84ab6d9b099deed8c2678d365c65cc88 | refs/heads/master | 2021-05-25T12:22:53.788915 | 2019-08-26T03:37:52 | 2019-08-26T03:37:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 273 | tst | normal-shadow.tst | geometry=0.0304687 0.290278 0.947656 0.231944 1
shear_x=-0.2
halign=center
valign=bottom
size=414
fgcolour=255 32 255 255 1
family=Impact
weight=500
olcolour=255 0 0 0 1
outline=0
bgcolour=0 0 0 0 1
pad=0
letter_spaceing=0
shadow_distance=21
shadow_angle=45
|
4912bf91ca7afa0d2cb092bb7b66fafc9909a480 | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH5/EX5.5.51/Ch5_5_51.sce | 027eabd743c0f0698d03dbbe20da2c70474bca25 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 360 | sce | Ch5_5_51.sce | clc
disp("Example 5.51")
printf("\n")
disp("calculate the value of L1 & L2 of Hartley oscillator")
printf("Given\n")
//frequency of oscillation
f=25*10^3
C=0.02*10^-6
//feedback factor
B=0.2
//Total inductance
L=1/(4*(%pi)^2*f^2*C)
L1byL2=B
L1plusL2=L
//therefore
L2=L/1.2
L1=L-L2
printf("The values of L1=\t%f henry\nL2=\t%f henry\n",L1,L2)
|
86f33f717fe6c99320780b869d7b268e7c968c76 | f2d773b00b1387882aee366ee149118d8ef67b07 | /difference.sci | 0aa738f867a2250955e6f1a380eb86f7214224d4 | [] | no_license | eduartheinen/pso-tsp | c1689f9fa9b03bf14e1523cc14acc708499729c2 | 39309bede47a8d39b803ec12b8bc9cbce1edeb0f | refs/heads/master | 2021-01-11T08:42:20.788981 | 2016-10-07T23:21:57 | 2016-10-07T23:21:57 | 69,510,304 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,572 | sci | difference.sci | function [best] = difference(a, b)
best = zeros(length(b) + 1, 2)
brev = zeros(1, length(b))
brev(:) = flipdim(b(:), 1)
if(~isequal(a,b))
for sl=1:length(b) //slides until back to original
transpositions = zeros(length(b) + 1, 2) //transpositions(i) = [2,7] swap indexes 2 and 7
transpositions(1,:) = [1, sl-1] //flag
transpositionsreversed = zeros(length(b) + 1, 2)
transpositionsreversed(1,:) = [-1, sl-1] //flag
tmpb(:) = b(:)
tmpbrev(:) = brev(:)
for i=1:length(a)
j = find(tmpb(i:$)==a(i))
if(j & j ~= 1)
tmp = tmpb(i+j-1)
tmpb(i+j-1) = tmpb(i)
tmpb(i) = tmp
transpositions(i+1,:) = [j+i-1, i]
end
k = find(tmpbrev(i:$)==a(i))
if(k & k ~= 1)
tmp = tmpbrev(i+k-1)
tmpbrev(i+k-1) = tmpbrev(i)
tmpbrev(i) = tmp
transpositionsreversed(i+1,:) = [k+i-1, i]
end
end
//remove rows [0,0]
transpositions(transpositions(:,2)==0 & transpositions(:,1)==0,:) = []
transpositionsreversed(transpositionsreversed(:,2)==0 & transpositionsreversed(:,1)==0,:) = []
if(length(transpositions) < length(best) | sl == 1)
best = transpositions
end
if(length(transpositionsreversed) < length(best))
best = transpositionsreversed
end
tmp = b(1)
b = [b(2:$), tmp]
tmp = brev(1)
brev = [brev(2:$), tmp]
end
end
best(best(:,2)==0 & best(:,1)==0,:) = [] //remove rows [0,0] from best
endfunction
|
5143d3b9967b6e3447f32f2f105159329d1a102a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2753/CH1/EX1.16/ex1_16.sce | aa908498e936030c2a212fdfd16718a17f7dc860 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 335 | sce | ex1_16.sce | //Example 1.16:
clc;
clear;
close;
//given data :
format('v',5)
T=27;//degree Celsius
Tk=273+T;//in Kelvin
e=1.6*10^-19;// electron charge in coulombs
k=1.38*10^-23;//Boltzmann constant in m^2-kg/s^2-K^-1
J=10^4;//in Amp/m^2
Jo=200;//in mA/m^2
x=(J/(Jo*10^-3));//
Ve=((log(x))*k*Tk)/e;//in V
disp(Ve,"voltage to be applied is ,(V)=")
|
7eceab65d2285c77bc1639ed69524f0408c9e663 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/group.man.tst | 331bcc87d8f91467d91bd2caf6d93013bf4a1f8c | [
"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 | 77 | tst | group.man.tst | clear;lines(0);
z=poly(0,'z');
h=z/(z-.5);
[tg,fr]=group(100,h);
plot(fr,tg)
|
aa2db649e877dd363d3af8286f489736d54765d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH18/EX18.12/Ex18_12.sce | e345cc0e0c56d5c7cf94ca905a93d7c90d2eaa10 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 362 | sce | Ex18_12.sce | //Initilization of variables
m1=40 //kg
m2=10 //kg
m3=15 //kg
v0=2.5 //m/s
vf=5 //m/s
t=12 //s
u=0.1 //coefficient of friction
g=9.8 //m/s^2
theta=45 //degrees
//Calculations
//Applying Impulse-Momentum Theoroem
P=(((m1+m2+m3)*(vf-v0))+(t*(-m2*g*sind(theta)+u*g*m2*cosd(theta)+u*g*m3+g*m1)))/t //N
//Result
clc
printf('The value of P is %f N',P)
|
8246c3adc15ed5a3e0af5a9db8547ccc3e47d0bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1793/CH7/EX7.1/7q1.sce | ba26d78be39abee59eeaf3e86cc452217d212f46 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 198 | sce | 7q1.sce | clc
//initialisation of variables
L= 30 //cm
A= 177 //cm^2
h= 50 //cm
Q= 350 //cm^3
t= 300 //sec
//claculations
k=Q*L/(A*h*t)
//results
printf ('hydraulic conductivity = % 3f cm/sec ',k)
|
e21ada673494ff70b62b612459ba89146c48f7e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH11/EX11.3/exa_11_3.sce | dd6fce506152283cb9f3ad242bc8336410ed56da | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 192 | sce | exa_11_3.sce | // Exa 11.3
clc;
clear;
close;
//given data
R1= 240;// in ohm
R2= 1.2;// in kohm
R2=R2*10^3;// in ohm
V_out= 1.25*(1+R2/R1);// in volt
disp(V_out,"Regulated output voltage in volt")
|
9275a11fa106ed4c120ab9b617804338021023d2 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/cumsum.man.tst | c9f7ce02ff4384b534247f593fdb7ee5563a3c3d | [
"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 | 178 | tst | cumsum.man.tst | clear;lines(0);
A=[1,2;3,4];
cumsum(A)
cumsum(A,'r')
cumsum(A,'c')
a=rand(3,4)+%i;
[m,n]=size(a);
w=zeros(a);
w(1,:)=a(1,:);
for k=2:m;w(k,:)=w(k-1,:)+a(k,:);end;w-cumsum(a,'r')
|
958a4872b2008bc3f7a479f0fe66271cfc973f93 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH1/EX1.17/Ex1_17.sce | 76b3381f51375b20aeec49c64b5d28955f178208 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sce | Ex1_17.sce | //Example 1_17
clc;
clear;
close;
format('v',5);
//given data :
V1=12;//V
V2=10;//V
R1=2;//ohm
R2=1;//ohm
R3=10;//ohm
//Node A : I1=(V1-VA)/2
//Node B : I2=(V2-VB)/2
//IL=VB/R3;//A
//IL=I1+I2
VA=10;VB=10//V
I1=(V1-VA)/2;//A//from Node A
I2=(V2-VB)/2;//A//from Node B
IL=VB/R3;//A
disp(I1,"Current by Battery A, IA(A)");
disp(I2,"Current by Battery B, IA(A)");
disp(IL,"Load Current(A)");
|
717a53e6262c64f27370fe8800244f02dd5383c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2081/CH8/EX8.11/Ex8_11.sce | fd6dfa9fd4fcf8c2f3c889159f2ff58a40288894 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 423 | sce | Ex8_11.sce | TDR=1*10^6
G=0.5
SmaxALOHA=G*%e^(-2*G)*TDR// throughput
printf('\nmax. throughput of ALOHA with large no.of subscibers with transmission rate of 1Mbps is= %.f kbps',SmaxALOHA*10^(-3))
Stdma=100/100*TDR
printf('\nthroughput of a TDMA network with transmission rate of 1Mbps is= %.f Mbps',Stdma*10^(-6));
Saloha=TDR
printf('\nthroughput of ALOHA with 1 subsciber with transmission rate of 1Mbps= %.f Mbps',Saloha*10^(-6));
|
028debc532a9762e806b9be1962de2603234cdaa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH3/EX3.5w/3_5w.sce | 991050732ad72b7978780d544ceb0ae90e784813 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | sce | 3_5w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 3.5w
//calculation of acceleration and distance travelled
//given data
v1=100//speed1(in m/s)
v2=150//speed2(in m/s)
t=1//change in time (in s)
//calculation
a=(v2-v1)/t;//formula of acceleration
x=((v2*v2)-(v1*v1))/(2*a);//distance travelled in (t+1)th second
printf('acceleration of the particle is %3.2f m/s^2',a)
printf('\ndistance travelled in (t+1)th second is %3.2f m',x)
|
cc22159ddb113a484fbe12f7d4fc2271f57970a6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH13/EX13.18/ex13_18.sce | 68efd9634b5c6e46f60f51ef29b7f6b81337f6ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 523 | sce | ex13_18.sce | clc;
clear all;
ar1 = 0.1258e-9; // Atomic radius in BCC state in meters
ar2 = 0.1292e-9; // Atomic radius in FCC state in meters
a1 = (4*ar1)/sqrt(3); //lattice constant for BCC
v1 = (a1^3)/2; // Volume occupied by 1 atom in BCC
a2 = (4*ar2)/sqrt(2); //lattice constant for FCC
v2 = (a2^3)/4; // Volume occupied by 1 atom in FCC
ch = ((v1-v2)/v1)*100; //Change in volume in percentage
disp('',ch,'Change in volume in percentage during structural changes is')
// Wrong answer in textbook...Checked in calculator
|
0262f2acf673f16df06e4dee3f1045af006c33bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /135/CH11/EX11.11/EX11.sce | 4f2ba041a7e5b12ddded36fd191a9dc63c2578f0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | EX11.sce | // Example 11.11: (a) Amplifier type
// (b) Input resistance, Output resistance, Transfer ratio
clc, clear
r_pi=1e3; // in ohms
gm=0.1; // in mho
disp("Part (a)");
disp("It ia a CB-CE cascade, configuration. It has low input and high output impedance and hence corresponds to a current amplifier.");
disp("Part (b)");
// From low frequency equivalent circuit in Fig. 11.40
btao=gm*r_pi;
Rin=r_pi/(1+btao); // Input resistance in ohms
Rout=%inf; // Output resistance (= ro of Q2)
Ai=gm*gm*Rin*3e3*1e3/(3e3+1e3); // Transfer ratio
disp(Rin,"Input resistance (Ω) =");
disp(Rout,"Output resistance =");
disp(Ai,"Transfer ratio ="); |
a550d2ad75f53597e8a8050adb9d62b4958de900 | 8c802fb8c6a8dc8ed61222ce257eb61f580a462e | /projects/08/FunctionCalls/StaticsTest/StaticsTestVME.tst | ffa38fd44a4abb694d8b8af77bdf2453f700809a | [] | no_license | radavis/nand2tetris | 0703b55695378cd8ec279599a34114cbfba48ef7 | 021ba06dbbe203206b44360f162a0d64e2dc41f9 | refs/heads/master | 2021-01-01T20:05:37.036752 | 2015-05-16T19:13:31 | 2015-05-16T19:13:31 | 34,955,667 | 8 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 309 | tst | StaticsTestVME.tst | // File name: projects/08/FunctionCalls/StaticsTest/StaticsTestVME.tst
load, // Load all the VM files from the current directory.
output-file StaticsTest.out,
compare-to StaticsTest.cmp,
output-list RAM[0]%D1.6.1 RAM[261]%D1.6.1 RAM[262]%D1.6.1;
set sp 261,
repeat 36 {
vmstep;
}
output;
|
1549df5fe11878d935025f33622a14d7b1288b58 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2300/CH8/EX8.14.5/Ex8_5.sce | 5640630aa0c6b1bdc3a72107dfcde74407bcf78c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 782 | sce | Ex8_5.sce |
//scilab 5.4.1
//windows 7 operating system
//chapter 8:Junction Transistors:Biasing and Amplification
clc;
clear;
//given data
Rl=5*10^3; //Load resistance in ohms
hie=1*10^3; //h parameter of the transistor in terms of ohms
hre=5*10^-4; //h parameter of the transistor
hfe=100; //h parameter of the transistor
hoe=25*10^-6; //h parameter of the transistor in terms of mho
Rg=1*10^3; //source reistance in ohms
AI=(-hfe)/(1+(hoe*Rl)); //Current gain
disp(AI,'AI=');
Ri=hie+(AI*hre*Rl); //input resistance in ohms
disp('ohms',Ri,'Ri=');
AVo=AI*Rl/(Rg+Ri); //Overall voltage gain including source resistance
disp(AVo,'AVo=');
APo=AVo*AI; //Overall voltage gain including source resistance
disp(APo,'APo=');
|
82f70944e76b8f81e66860070ad8c069e6928d78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1092/CH4/EX4.2/Example4_2.sce | 3e4f82daf4ece5fea7fb8e1b75d56eacd3712502 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,034 | sce | Example4_2.sce | // Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 4: DC Dynamo Torque Relations-DC Motors
// Example 4-2
clear; clc; close; // Clear the work space and console.
// Given data
d = 18 ; // diameter of hte coil in inches
l = 24 ; // axial length of the coil in inches
B = 24000 ; // Flux density in lines/sq.inches
I = 26 ; // Current carried by the coil in A
theta = 60 ; // angle between the useful force & the interpolar ref axis in deg
// Calculations
F = ( B * I * l * 10 ^ -7 ) / 1.13 ; // force developed on each coil side in lb
f = F * sind(theta); // force developed at the instant the coil lies at an angle
// of 60 w.r.t the interpolar ref axis
r = d / 2; // radius of the coil in inches
T_c = f * ( r * 1 / 12); // torque developed in lb.ft/conductor
// Display the results
disp("Example 4-2 Solution : ")
printf("\n a : F = %.3f lb ", F );
printf("\n b : f = %.2f lb ", f );
printf("\n c : Tc = %.3f lb-ft/conductor ", T_c );
|
b990902fa95f1b90c38ca5917edf66aeb2d6a1f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3774/CH3/EX3.1/Ex3_1.sce | 357bcaf6b2b613af9590292ea97614cab26ce5fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 726 | sce | Ex3_1.sce | // exa 3.1 Pg 62
clc;clear;close;
// Given Data
P=30;// kN
Sut=350;// MPa
n=2.5;// factor of safety
sigma_w=Sut/n;// MPa (Working stress for the link)
t=poly(0,'t');// thickness of link
A=2.5*t**2;// mm.sq.
I=t*(2.5*t)**3/12;// mm^4 (Moment of Inertia about N-A)
sigma_d=P/A;// N/mm.sq.
e=10+1.25*t;//mm
M=P*10**3*e;// N.mm
sigma_t=M*1.25*t/I;// N/mm.sq.
//maximum tensile stress at the top fibres = sigma_d+sigma_t=sigma_w ...eqn(1)
expr=sigma_d+sigma_t-sigma_w ;// expression of polynomial from above eqn.
t=roots(numer(expr));// solving the equation (as denominator will me be multiplied by zero on R.H.S)
t=t(1);// mm // discarding -ve roots
printf('dimension of cross section of link, t=%.f mm. Adopt t=21 mm. ',t)
|
6ee23e7c7d68fabd1b6d09885ceac7bf8626f3a1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH12/EX12.5a/12_5anew.sce | d67290f905679bc06d94eea7d023c992e0ae83f5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 819 | sce | 12_5anew.sce | function result= fact(num)
if(num<=0)
result= 1
else
result = factorial(num)
end
endfunction
function result = proba(n,m,k)
if(pmodulo(k,2)==0)
k=k/2;
result = 2*fact(m-1)*fact(n-1)*fact(n)*fact(m)/(fact(k-1)^2*fact(m-k)*fact(n-k)*fact(n+m));
else
k = (k-1)/2;
result = fact(m-1)*fact(n-1)*fact(n)*fact(m)/(fact(k-1)*fact(k)*fact(m-k)*fact(n-k-1)*fact(n+m)) + fact(m-1)*fact(n-1)*fact(n)*fact(m)/(fact(k-1)*fact(k)*fact(m-k-1)*fact(n-k)*fact(n+m));
end
endfunction
r1 = 20;
n1 = 20;
m1=10;
ans1 =0;
for i=1:19
ans1 =ans1 + proba(n1,m1,i);
//disp(proba(n,m,i));
//disp(ans1)
end
if(ans1<0.5)
pvalue1 = 2*ans1;
else
pvalue1 = 2*(1-ans1);
end
disp(pvalue1, "P-value is") |
9d085d71c0ac6f1089abed95eb1e2bdea77b98ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /27/DEPENDENCIES/circle.sci | 7648e8fb0565755a7658e25c4ea66dd81476929b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | sci | circle.sci | function [] = circle(centre,radius,NOP)
THETA=linspace(0,2*%pi,NOP);
RHO=ones(1,NOP)*radius;
z=tan(THETA);
x=sqrt(((RHO).^2)./(1+(z.^2)));
y=x.*z;
x=x+centre(1);
y=y+centre(2);
plot2d(x,y,style=-2);
set(gca(),"auto_clear","off") //hold on
plot2d(-(x)+2*(centre(1)),y,style=-2);
/////////////// End of Function circle |
1e53ac71d078e79269a769bb5913419f165385a4 | 6227c5ef4e1c5d72cdebd6eac81f82161dda7e17 | /digi_dc_dc/Scilab/Thermal/plotThermal_Z.sci | 43cbc9e88ac24ac77a7b1e37cdbaa701153f58fe | [] | no_license | maxsimmonds1337/Scilab | b4e8a03a9fbeda4d8f6e51e07d205bcf51addce8 | b413659e2b697565c24ad440d158f5bd28203570 | refs/heads/master | 2022-11-04T23:17:50.045864 | 2020-06-13T20:35:24 | 2020-06-13T20:35:24 | 272,081,285 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 399 | sci | plotThermal_Z.sci | //Function to plot the thermal impedance of a Mosfet in various modes
// param is a string 'nn' both axis in linear,'ln', x in linear y in log 'll' both in log
function []=plotThermal_Z(Zth,end_time,param)
//verify time in linear
time_lin=linspace(0,end_time,10000);
step_res=csim('step',time_lin,Zth);
scf()
plot2d(param,time_lin,step_res,2);
xlabel('time (s)')
ylabel('ºC/W')
endfunction
|
7860d92b0c8a5caf6cffe87d2a1bd8133c56cf44 | 717ddeb7e700373742c617a95e25a2376565112c | /3165/CH5/EX5.2/Ex5_2.sce | 8af9baf1c01f8b767f351453c07885d51ce40e5e | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 632 | sce | Ex5_2.sce | //Example 5 . 2
//Program to c a l c u l a t e FIR F i l t e r c o e f f i c i e n t s f o r the d i r e c t form s t r u c t u r e
// k1=1/2 , k2=1/3 , k3=1/4
clc ;
U =1;
k1 =1/2;
k2 =1/3;
k3 =1/4;
a (3+U ,0+U) =1;
a (1+U ,1+U)=k1;
a (2+U ,2+U)=k2;
a (3+U ,3+U)=k3;
m=2,k=1;
a(m+U,k+U)=a(m -1+U,k+U)+a(m+U,m+U)*a(m -1+U,m-k+U);
m=3,k=1;
a(m+U,k+U)=a(m -1+U,k+U)+a(m+U,m+U)*a(m -1+U,m-k+U);
m=3,k=2;
a(m+U,k+U)=a(m -1+U,k+U)+a(m+U,m+U)*a(m -1+U,m-k+U);
disp (a(3+U ,0+ U), ' a ( 3 , 0 ) ' );
disp (a(3+U ,1+ U), ' a ( 3 , 1 ) ' );
disp (a(3+U ,2+ U), ' a ( 3 , 2 ) ' );
disp (a(3+U ,3+ U), ' a ( 3 , 3 ) ' );
|
404b4a7b5ce9d278b814cddf3af38405b76bd877 | 50145ac9e4eb8bce8975bf874a027c4a4620a092 | /Assignment2/column_space.sce | 7e323c25bab4b0727784efcb67017dec13ce0847 | [] | no_license | RahilNModi/LA_assignment | 86d274214fb3ac86b900af2e4c187bd692ebcb07 | 5d1905548bad9eb9b01f7e3269b837fb924b3ddc | refs/heads/master | 2021-07-05T09:15:29.848895 | 2021-05-11T17:39:52 | 2021-05-11T17:39:52 | 236,529,008 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 667 | sce | column_space.sce | clear
clc
close
n=3
a=[]
A=[]
printf("Enter 3x3 matrix:\n\n")
for i=1:3
for j=1:4
printf("Enter the a(%d,%d)th element:",i,j)
a(i,j)=input("");
end
end
A=a
disp(a,"The matrix is:")
//Echleon form
for j=2:n
for i=j:n
k=j
if(a(j-1,j-1)==0)then
k=j+1
end
a(i,k:n+1)=a(i,k:n+1)-a(j-1,k:n+1)*(a(i,k-1)/a(j-1,k-1))
a(i,k-1)=0
end
disp(a)
end
for i=1:3
for j=i:4
if(a(i,j)~=0)then
printf("%d has pivot\n",j)
printf("The basis vectors include:")
disp(A(:,j))
break;
end
end
end
|
23faa86240fe33c3f919cc17c3a14e1fc8f60207 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3872/CH3/EX3.5/Ex3_5.sce | 5c1e6408f939066fa9d0abcfac2f491debfa022e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,531 | sce | Ex3_5.sce | //Book - Power system: Analysisi & Design 5th Edition
//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J.Overbye
//Chapter-3 ;Example 3.5
//Scilab Version - 6.0.0; OS - Windows
clc;
clear;
Eab=480 //Line voltage of star connected voltage source in Volts
ZL=10*exp(%i*40*%pi/180) // Load impedance in Ohms
Zl=1*exp(%i*85*%pi/180) // Line impedance between source and load in Ohms
Sb=10 //Base power in kVA
VbLL=480 //line to line base voltage in Volts
Zb =((VbLL)^2/(Sb*1000)) //Base impedance in Ohms
Zlpu=Zl/Zb //per unit line impedance
ZLpu=ZL/Zb //per unit load impedance
VbLN=VbLL/(sqrt(3)) //line to neutral base voltage in Volts
Eanpu=(277*exp(%i*(-30)*%pi/180))/277 //source voltage in per unit
Iapu=Eanpu/(Zlpu+ZLpu) //per unit line current in phase a
Ib=(Sb*1000)/(sqrt(3)*VbLL) //base current in Amperes
Ia=Iapu*Ib //actual phase a line current in Amperes
printf('The magnitude of per unit line current in phase a is %.4f and its angle is %.4f degree\n',abs(Iapu),atand(imag(Iapu),real(Iapu)));
printf('The magnitude of actual line current in phase a is %.4f Amperes and its angle is %.4f degrees\n',abs(Ia),atand(imag(Ia),real(Ia)));
|
fdd2d831f7a768c8e28ed396cf72497ba36534f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH14/EX14.15/example14_15.sce | 5739efc51771f9a24480a86a1d40531796b25591 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 652 | sce | example14_15.sce | clc
// Given that
lambda = 5.89e-7 // wavelength of light in meter
lambda_ = 7.32e-7 // threshold wavelength of photoelectron in meter
h = 6.62e-34 // Planck constant in J-sec
c = 3e8 // speed of light in m/sec
e = 1.6e-19 // charge on an electron in C
m = 9.1e-31 // mass of an electron in kg
// Sample Problem 15 on page no. 14.25
printf("\n # PROBLEM 15 # \n")
printf("Standard formula used \n ")
printf(" E = (h * c) * (1 / lambda1 - 1 / lambda2) \n")
E = (h * c) * (1 / lambda - 1 / lambda_)
V = E / e
printf("\n Stopping potential is %f V.\n Maximum kinetic energy is %e J.",V,E)
|
a8e0f6177f3609231fc4f03c3e2ff138520ee804 | e2ae697563b1b764d79ea1933b555ab0d5e3849c | /macros/rmzero.sci | 043359f240a2e5b18ecb723fa5e0cdf9085bb4eb | [] | no_license | gq-liu/IPDesignLab | c49b760740f47ec636232a6947aecb3c0626518a | b2f9a9eecad6616c99a2ec20fcceb14fb3ed0c3f | refs/heads/master | 2022-01-18T13:30:55.972779 | 2019-05-06T17:23:12 | 2019-05-06T17:23:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,962 | sci | rmzero.sci | function rmzero()
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
// Authors
// Holger Nahrstaedt - 2010
// Ishan Pendharkar - 2001-2007
//
//RLTOOL for scilab (c) Ishan Pendharkar.
//function delete a zero from the plant
global g g_cont g_plant g_sensor marked_handle Knumber
//xset('window',0);
scf(0)
flag=0;
p=locate(1,1);
p=clean(p,Limits()); // this is the mouse click...
p=p(1)+%i*p(2); // and the corresponding complex point
if Knumber<>3 then,
r=roots(numer(g));
else
r=roots(numer(g_cont));
end;
[n,m]=size(r);
if n*m==0 then, //empty roots
return;
end;
for i=1:n, // did you really click on a zero??......
if abs(p-r(i))< Limits() then, p=r(i); flag=1;
end;
end;
if flag==0 then // No you didn't!!....
//xselect();
show_window(0);
xinfo('click on a zero to remove it');
end;
if flag==1 then, // YES it is indeed a zero!!
if imag(p)==0 then gtr_cont=g_cont/(s-real(p));
else gtr_cont=g_cont/((%s-real(p))^2+imag(p)^2); // remove it!
end;
gtr=clean(gtr_cont*g_plant*g_sensor,1e-5);
whichplot(gtr); // update plots.
gtr=rl(gtr); // confirm this change
if gtr<>[] then,
g_cont=gtr_cont
g=gtr;
else
whichplot(g);
end;
end;
marked_handle=[]
clear gtr gtr_cont;
//return;
endfunction |
8f99e9055e1c6dba8c2e66611dab721da013c1f0 | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /Positive_Negative_test/Netezza-Base-SparseStatisticalFunctions/FLSparseKurtosis-NZ-01.tst | 4ff6483bb31a41a70dcb6609705cae1611d8849e | [] | no_license | kamleshm/intern_fuzzy | c2dd079bf08bede6bca79af898036d7a538ab4e2 | aaef3c9dc9edf3759ef0b981597746d411d05d34 | refs/heads/master | 2021-01-23T06:25:46.162332 | 2017-07-12T07:12:25 | 2017-07-12T07:12:25 | 93,021,923 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,513 | tst | FLSparseKurtosis-NZ-01.tst | -- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC.
-- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade
-- secret or copyright law. Dissemination of this information or reproduction of this material is
-- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC.
-- Functional Test Specifications:
--
-- Test Category: Sparse Statistics Functions
--
-- Test Unit Number: FLSparseKurtosis-Netezza-01
--
-- Name(s): FLSparseKurtosis
--
-- Description: Scalar function which returns the kurtosis of a values stored in sparse form
--
-- Applications:
--
-- Signature: FLSparseKurtosis(SumX DOUBLE PRECISION, SumSq DOUBLE PRECISION, SumCu DOUBLE PRECISION, SumQd DOUBLE PRECISION, NumObs BIGINT)
--
-- Parameters: See Documentation
--
-- Return value: DOUBLE PRECISION
--
-- Last Updated: 04-26-2017
--
-- Author: <Zhi.Wang@fuzzyl.com>
-- Author: <Diptesh.Nath@fuzzylogix.com>
-- BEGIN: TEST SCRIPT
-- .run file=../PulsarLogOn.sql
-- .set width 2500
SELECT COUNT(*) AS CNT,
CASE WHEN CNT = 0 THEN ' Please Load Test Data!!! ' ELSE ' Test Data Loaded ' END AS TestOutcome
FROM tblHomeSurveySparse a;
-- BEGIN: POSITIVE TEST(s)
---- Positive Test 1: Manual Example
-- Same output, good
SELECT a.MediaOutletID,
FLSparseKurtosis(a.VarSum,
a.VarSqSum,
a.VarCuSum,
a.VarQdSum,
a.VarCount) AS FLSparseKurtosis
FROM (
SELECT MediaOutletID,
SUM(Num_Val) AS VarSum,
SUM(Num_Val * Num_Val) AS VarSqSum,
SUM(Num_Val * Num_Val *Num_Val) AS VarCuSum,
SUM(Num_Val * Num_Val *Num_Val * Num_Val) AS VarQdSum,
9605 AS VarCount
FROM tblHomeSurveySparse
GROUP BY MediaOutletID
) AS a
WHERE MediaOutletID <= 10
ORDER BY 1;
---- Positive Test 2:
SELECT FLSparseKurtosis(575, 575, 575, 575, 9605);
---- Positive Test 3: Input Large Value 1e100
SELECT FLSparseKurtosis(1e100, 575, 575, 575, 9605); /* Error Numeric Overflow Due To Invalid Input */
SELECT FLSparseKurtosis(575, 1e100, 575, 575, 9605);
SELECT FLSparseKurtosis(575, 575, 1e100, 575, 9605);
SELECT FLSparseKurtosis(575, 575, 575, 1e100, 9605);
SELECT FLSparseKurtosis(575, 575, 575, CAST(2 ** 63 -1 AS BIGINT));
---- Positive Test 4: Input Vary Small Value 1e-100
SELECT FLSparseKurtosis(1e-100, 575, 575, 575, 9605);
SELECT FLSparseKurtosis(575, 1e-100, 575, 575, 9605); /* Error A Floating Point Exception: Divide By Zero Due To Invalid Input */
SELECT FLSparseKurtosis(575, 575, 1e-100, 575, 9605);
SELECT FLSparseKurtosis(575, 575, 575, 1e-100, 9605);
-- END: POSITIVE TEST(s)
-- BEGIN: NEGATIVE TEST(s)
---- Negative Test 1: Number of Obs = 0
--- Return error
SELECT FLSparseKurtosis(575, 575, 575, 575, 0);
---- Negative Test 2: Number of Obs = 1
--- Null
SELECT FLSparseKurtosis(575, 575, 575, 575, 1);
---- Negative Test 3: Number of Obs = 2
--- Null
SELECT FLSparseKurtosis(575, 575, 575, 575, 2);
---- Negative Test 4: Number of Obs = 3
--- Null
SELECT FLSparseKurtosis(575, 575, 575, 575, 3);
---- Negative Test 5: Sumsq < 0
--- Expected error msg, Good
SELECT FLSparseKurtosis(575, -575, 575, 575, 9605);
---- Negative Test 6: SumQd < 0
--- Expected error msg, Good
SELECT FLSparseKurtosis(575, 575, 575, -575, 9605);
---- Negative Test 7: Input Out of Boundary Value
SELECT FLSparseKurtosis(1e400, 575, 575, 575, 9605);
SELECT FLSparseKurtosis(575, 1e400, 575, 575, 9605);
SELECT FLSparseKurtosis(575, 575, 1e400, 575, 9605);
SELECT FLSparseKurtosis(575, 575, 575, 1e400, 9605);
SELECT FLSparseKurtosis(575, 575, 575, 575, CAST(2 ** 63 AS BIGINT));
---- Negative Test 8: Input 1e-400
--- Expected error msg, Good
SELECT FLSparseKurtosis(1e-400, 575, 575, 575, 9605);
SELECT FLSparseKurtosis(575, 1e-400, 575, 575, 9605);
SELECT FLSparseKurtosis(575, 575, 1e-400, 575, 9605);
SELECT FLSparseKurtosis(575, 575, 575, 1e-400, 9605);
---- Negative Test 9: Invalid DataType
--- Expected error msg, Good
SELECT FLSparseKurtosis(575, 575, 575, 575, 9605.0);
SELECT FLSparseKurtosis(NULL, 575, 575, 575, 9605);
SELECT FLSparseKurtosis(575, NULL, 575, 575, 9605);
SELECT FLSparseKurtosis(575, 575, NULL, 575, 9605);
SELECT FLSparseKurtosis(575, 575, 575, NULL, 9005);
SELECT FLSparseKurtosis(575, 575, 575, 575, NULL);
-- END: NEGATIVE TEST(s)
-- END: TEST SCRIPT
|
61aad038ca651a6839e21640111a193402358d0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /534/CH1/EX1.1/1_1_Wall_Heat_Loss.sce | e92a71d6aebe3208d6df10f0c1b75e9c67c9f0f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 648 | sce | 1_1_Wall_Heat_Loss.sce | clear;
clc;
printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 1.1 Page 5 ')//Example 1.1
// Find Wall Heat Loss - Problem of Pure Conduction Unidimensional Heat
L=.15; //[m] - Thickness of conducting wall
delT = 1400 - 1150; //[K] - Temperature Difference across the Wall
A=.5*1.2; //[m^2] - Cross sectional Area of wall = H*W
k=1.7; //[W/m.k] - Thermal Conductivity of Wall Material
//Using Fourier's Law eq 1.2
Q = k*delT/L; //[W/m^2] - Heat Flux
q = A*Q; //[W] - Rate of Heat Transfer
printf("\n \n Heat Loss through the Wall = %.2f W",q);
//END
|
3c9b6d35aa4df9b35450dfa3bffb3c526472a2d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1394/CH8/EX8.1.1/Ex8_1_1.sce | 95ce8a955b42f480089e28b9fed3166aeaf4cf0b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 376 | sce | Ex8_1_1.sce |
clc
//initiliazation of variables
Vap = (0.05/22.4)*23.8/760 // Vapour concentration
V = 18.4*10^3 // Air Volume in cc
A = 150 // Liquid Area in Cm^2
t1 = 180 // Time in sec
N1 = (Vap*V)/(A*t1)
k = 3.4*10^-2 // cm/sec
C = 0.9
//Calculations
t = (-V/(k*A))*log(1 - C)
thr = t/3600
//Results
printf("the time taken to reach 90 percent saturation is %.3f hr",thr)
|
5d107242c1574316de68b238d2513485507f08d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /797/CH1/EX1.2s/1_02_solution.sce | 3f4efd0f249debe6d79a974f105b08cc28341e31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | sce | 1_02_solution.sce | //Solution 1-01
WD=get_absolute_file_path('1_02_solution.sce');
datafile=WD+filesep()+'1_02_example.sci';
clc;
exec(datafile)
totE = turbine_power * t; //total energy generated by turbine in one yeear [kWh]
money_saved = totE * unit_cost; //money saved per year [$]
printf("The amount of electric power generated by wind turbine is %1.2f kW", totE)
printf("\nMoney saved by turbine per year: \$%1.2f", money_saved);
|
2c57560627efa8ad622120983dbab52b114c940b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH3/EX3.18/ex3_18.sce | b290783c2f02f1abaf3f988f3c6a32e8e58d36c2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex3_18.sce | // Exa 3.18
clc;
clear;
close;
format('v',4)
// Given data
R = 222;// in ohm
Vin = 20;// in V
V_Z = 10;// in V
P = 400;// in mW
P= P*10^-3;// in W
I_Zmax = P/V_Z;// in A
//I = I_Z+I_L;
I = (Vin-V_Z)/R;// in A
I_Lmin = I - I_Zmax;// in mA
// The value of R_L
R_L =V_Z/I_Lmin;// in ohm
R_L= R_L*10^-3;// in k ohm
disp(R_L,"The value of R_L in k ohm is");
|
cfec4f8ab13447dc02b9ceb65461337e20f00813 | a1e081ceabd043cf1506b917c7f2fb243be290d8 | /P2/ex3_script.sci | da6603c33526c8c7a8a15bb40c7a3db1cb96da3f | [] | no_license | pablospe/ssc | 2cd8e21e1843f246e2d7f565557f4f73368aa4b8 | 353fc62f18202e73b84bea4f2d83f64cdeb15723 | refs/heads/master | 2021-01-10T21:35:46.798450 | 2014-04-24T05:11:51 | 2014-04-24T05:11:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,040 | sci | ex3_script.sci | A = [0, 1; -9.01, 0.2];
B = [0; 1];
u = 1;
x0 = [1; -2];
t0 = 0;
tf = 25;
// Select system
system = ex3;
clf
err = [];
//hh=[ [1:9]*0.001 [1:9]*0.01 ];
hh=[ [1:9]*0.01 ];
for h=hh
disp(h);
errors = []; // errors for current 'h'
t= [t0:h:tf];
x_a = ltisol(A, B, u, x0, t);
//plot(t',x_a');
[t, x] = feuler(system, x0, t0, tf, h);
errors = [errors, global_error(x, x_a)];
//plot(t', x');
[t, x] = beuler(system, x0, t0, tf, h);
errors = [errors, global_error(x, x_a)];
//plot(t', x');
[t, x] = mixed_euler(system, x0, t0, tf, h);
errors = [errors, global_error(x, x_a)];
//plot(t',x');
[t, x] = cicled_euler(system, x0, t0, tf, h);
errors = [errors, global_error(x, x_a)];
plot(t', x');
err = [err; errors]; // errors for all 'h'
end
xtitle('', 'time', 'x');
// Error comparison
scf
disp(err)
plot(hh', err);
xtitle('h (integration step) vs error', 'h', 'error');
legend('forward euler', 'backward euler', 'mixed euler', 'cicled euler');
|
33833f1951e9347f306bc1de7268cdd069348f3e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1376/CH5/EX5.4/5_4.sci | 35ade09f1ab6f148abfd695ee6d74b66bbe2d807 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 212 | sci | 5_4.sci | //5.4
clc;
l2=(10/3)*(1.5/1.5)*(9/15)^2;
printf("Length of wire=%.2f m",l2)
a1=0.0004;
a2=0.0003;
R2=1;
R1=1.5*R2;
T=100;
Rp=R1*(1+a1*T);
Rq=R2*(1+a2*T);
R=Rp/Rq;
printf("Ratio of resistances=%.2f",R) |
012e33e523aaf4fd0f5c09f21c1f2a59bb49a0ea | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Pre Aim Circuit.sce | 311dc817ff9f95c517a265b7caaa212f7b4fb4ad | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 84,666 | sce | Pre Aim Circuit.sce | Name=Pre Aim Circuit
PlayerCharacters=PAC Player
BotCharacters=PAC Bot Rotation.rot
IsChallenge=true
Timelimit=60.0
PlayerProfile=PAC Player
AddedBots=PAC Bot Rotation.rot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=1
BotTeams=2
MapName=pre_aim_circuit.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.0
ScorePerKill=1000.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=MCA-21, Click-timing, Movement
WeaponHeroTag=Semi-auto
DifficultyTag=2
AuthorsTag=pleasewait
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=true
Description=Shoot targets while going round the map to improve pre-aim. ---------------------------------- Note: MCA stands for "Monthly Competitive Aiming", a local event for the competitive aiming community in Japan.
GameVersion=1.0.8.0
ScorePerDistance=0.01
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=PAC Target 01
DodgeProfileNames=
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 01
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 02
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 02
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 03
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 03
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 04
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 04
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 05
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 05
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 06
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 06
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 07
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 07
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 08
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 08
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 09
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 09
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 10
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 10
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 11
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 11
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 12
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 12
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 13
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 13
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 14
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 14
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 15
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 15
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 16
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 16
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 17
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 17
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 18
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 18
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 19
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 19
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Profile]
Name=PAC Target 20
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=PAC Target 20
SeeThroughWalls=true
NoDodging=true
NoAiming=true
[Bot Rotation Profile]
Name=PAC Bot Rotation
ProfileNames=PAC Target 01;PAC Target 02;PAC Target 03;PAC Target 04;PAC Target 05;PAC Target 06;PAC Target 07;PAC Target 08;PAC Target 09;PAC Target 10;PAC Target 11;PAC Target 12;PAC Target 13;PAC Target 14;PAC Target 15;PAC Target 16;PAC Target 17;PAC Target 18;PAC Target 19;PAC Target 20
ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
Randomized=false
[Character Profile]
Name=PAC Player
MaxHealth=100.0
WeaponProfileNames=PAC Semi-auto;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=1.0
AirControl=0.25
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=72.0
MainBBRadius=12.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 01
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=192.0
SpawnYOffset=-120.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 02
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=244.0
SpawnYOffset=-244.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 03
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=244.0
SpawnYOffset=-384.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 04
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=192.0
SpawnYOffset=-504.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 05
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=68.0
SpawnYOffset=-556.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 06
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-72.0
SpawnYOffset=-556.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 07
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-192.0
SpawnYOffset=-504.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 08
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-244.0
SpawnYOffset=-384.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 09
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-244.0
SpawnYOffset=-244.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 10
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-192.0
SpawnYOffset=-120.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 11
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=192.0
SpawnYOffset=124.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 12
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=244.0
SpawnYOffset=244.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 13
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=244.0
SpawnYOffset=384.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 14
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=192.0
SpawnYOffset=508.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 15
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=68.0
SpawnYOffset=560.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 16
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-72.0
SpawnYOffset=560.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 17
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-192.0
SpawnYOffset=508.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 18
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-244.0
SpawnYOffset=384.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 19
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-244.0
SpawnYOffset=244.0
InvertBlockedSpawn=false
[Character Profile]
Name=PAC Target 20
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
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=Cuboid
MainBBHeight=12.0
MainBBRadius=6.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=12.0
ProjBBRadius=6.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=-192.0
SpawnYOffset=124.0
InvertBlockedSpawn=false
[Weapon Profile]
Name=PAC Semi-auto
Type=Hitscan
ShotsPerClick=1
DamagePerShot=10.0
KnockbackFactor=0.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=1000000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=4
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=1000000.0
DamageFalloffStopDistance=1000000.0
DamageAtMaxRange=100.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.000001
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.1
HitSoundCooldown=0.1
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=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=false
AimPunchAmount=0.0
AimPunchResetTime=0.0
AimPunchCooldown=0.0
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=4
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=90.0
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=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,0.0,0.0
SpreadSCA=1.0,1.0,0.0,0.0
SpreadMSA=1.0,1.0,0.0,0.0
SpreadMCA=1.0,1.0,0.0,0.0
SpreadSSH=1.0,1.0,0.0,0.0
SpreadSCH=1.0,1.0,0.0,0.0
SpreadMSH=1.0,1.0,0.0,0.0
SpreadMCH=1.0,1.0,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.1
TimeToRecoilReset=0.1
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=false
TrackVertical=false
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=true
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.0
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
232.000000 332.000000 320.000000
280.000000 332.000000 320.000000
280.000000 332.000000 312.000000
232.000000 332.000000 312.000000
232.000000 324.000000 320.000000
280.000000 324.000000 320.000000
280.000000 324.000000 312.000000
232.000000 324.000000 312.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
260.000000 348.000000 320.000000
268.000000 348.000000 320.000000
268.000000 348.000000 312.000000
272.000000 332.000000 312.000000
260.000000 348.000000 312.000000
280.000000 332.000000 320.000000
280.000000 332.000000 312.000000
272.000000 332.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 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 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
272.000000 324.000000 320.000000
280.000000 324.000000 320.000000
280.000000 324.000000 312.000000
268.000000 308.000000 320.000000
272.000000 324.000000 312.000000
260.000000 308.000000 312.000000
260.000000 308.000000 320.000000
268.000000 308.000000 312.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
232.000000 332.000000 200.000000
280.000000 332.000000 200.000000
280.000000 332.000000 192.000000
232.000000 332.000000 192.000000
232.000000 324.000000 200.000000
280.000000 324.000000 200.000000
280.000000 324.000000 192.000000
232.000000 324.000000 192.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
260.000000 348.000000 200.000000
268.000000 348.000000 200.000000
268.000000 348.000000 192.000000
272.000000 332.000000 192.000000
260.000000 348.000000 192.000000
280.000000 332.000000 200.000000
280.000000 332.000000 192.000000
272.000000 332.000000 200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 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 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
272.000000 324.000000 200.000000
280.000000 324.000000 200.000000
280.000000 324.000000 192.000000
268.000000 308.000000 200.000000
272.000000 324.000000 192.000000
260.000000 308.000000 192.000000
260.000000 308.000000 200.000000
268.000000 308.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
118.222244 256.000000 347.555573
256.000000 255.999985 320.000000
127.111130 256.000000 361.777832
256.000000 400.000000 336.000000
127.111130 400.000000 361.777832
256.000000 255.999985 336.000000
256.000000 400.000000 320.000000
118.222244 400.000000 347.555573
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 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
255.777832 256.000000 320.333313
393.555573 256.000000 347.888885
255.777863 256.000000 336.333282
384.666748 400.000000 362.111084
255.777863 400.000000 336.333282
384.666748 256.000000 362.111084
393.555573 400.000000 347.888885
255.777832 400.000000 320.333313
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
393.555573 256.000000 347.888885
476.222229 256.000000 430.555573
384.666748 256.000000 362.111084
462.000031 400.000000 439.444427
384.666748 400.000000 362.111084
462.000031 256.000000 439.444427
476.222229 400.000000 430.555573
393.555573 400.000000 347.888885
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
476.222229 256.000000 430.555573
503.777832 256.000000 568.333252
462.000000 256.000000 439.444427
487.777832 400.000000 568.333252
462.000000 400.000000 439.444427
487.777832 256.000000 568.333252
503.777832 400.000000 568.333252
476.222229 400.000000 430.555573
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 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
503.777832 256.000000 568.333313
476.222229 256.000000 706.111084
487.777832 256.000000 568.333374
462.000000 400.000000 697.222290
487.777832 400.000000 568.333374
462.000000 256.000000 697.222290
476.222229 400.000000 706.111084
503.777832 400.000000 568.333313
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
476.222229 256.000000 706.111084
393.555603 256.000000 788.777710
462.000000 256.000000 697.222290
384.666748 400.000000 774.555420
462.000000 400.000000 697.222290
384.666748 256.000000 774.555420
393.555603 400.000000 788.777710
476.222229 400.000000 706.111084
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
393.555603 256.000000 788.777710
255.777893 256.000000 816.333252
384.666748 256.000000 774.555420
255.777863 400.000000 800.333252
384.666748 400.000000 774.555420
255.777863 256.000000 800.333252
255.777893 400.000000 816.333252
393.555603 400.000000 788.777710
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 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
255.777832 256.000000 816.333313
118.000092 256.000000 788.777710
255.777802 256.000000 800.333374
126.888885 400.000000 774.555542
255.777802 400.000000 800.333374
126.888885 256.000000 774.555542
118.000092 400.000000 788.777710
255.777832 400.000000 816.333313
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
118.000092 256.000000 788.777710
35.333405 256.000000 706.111145
126.888885 256.000000 774.555542
49.555756 400.000000 697.222290
126.888885 400.000000 774.555542
49.555756 256.000000 697.222290
35.333405 400.000000 706.111145
118.000092 400.000000 788.777710
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
35.333405 256.000000 706.111145
7.777924 256.000000 568.333374
49.555756 256.000000 697.222290
23.777954 400.000000 568.333435
49.555756 400.000000 697.222290
23.777954 256.000000 568.333435
7.777924 400.000000 568.333374
35.333405 400.000000 706.111145
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 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
8.000031 256.000000 568.000000
35.555588 256.000000 430.222260
24.000000 256.000000 568.000000
49.777786 400.000000 439.111115
24.000000 400.000000 568.000000
49.777786 256.000000 439.111115
35.555588 400.000000 430.222260
8.000031 400.000000 568.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 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
35.555588 256.000000 430.222260
118.222244 256.000000 347.555573
49.777786 256.000000 439.111115
127.111130 400.000000 361.777832
49.777786 400.000000 439.111115
127.111130 256.000000 361.777832
118.222244 400.000000 347.555573
35.555588 400.000000 430.222260
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
393.555603 256.000000 164.777710
255.777893 256.000000 192.333252
384.666748 256.000000 150.555420
255.777863 400.000000 176.333252
384.666748 400.000000 150.555420
255.777863 256.000000 176.333252
255.777893 400.000000 192.333252
393.555603 400.000000 164.777710
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 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
255.777832 256.000000 192.333313
118.000092 256.000000 164.777710
255.777802 256.000000 176.333374
126.888885 400.000000 150.555542
255.777802 400.000000 176.333374
126.888885 256.000000 150.555542
118.000092 400.000000 164.777710
255.777832 400.000000 192.333313
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
118.000092 256.000000 164.777710
35.333405 256.000000 82.111145
126.888885 256.000000 150.555542
49.555756 400.000000 73.222290
126.888885 400.000000 150.555542
49.555756 256.000000 73.222290
35.333405 400.000000 82.111145
118.000092 400.000000 164.777710
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
35.333405 256.000000 82.111145
7.777924 256.000000 -55.666626
49.555756 256.000000 73.222290
23.777954 400.000000 -55.666565
49.555756 400.000000 73.222290
23.777954 256.000000 -55.666565
7.777924 400.000000 -55.666626
35.333405 400.000000 82.111145
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 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
8.000031 256.000000 -56.000000
35.555588 256.000000 -193.777740
24.000000 256.000000 -56.000000
49.777786 400.000000 -184.888885
24.000000 400.000000 -56.000000
49.777786 256.000000 -184.888885
35.555588 400.000000 -193.777740
8.000031 400.000000 -56.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 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
35.555588 256.000000 -193.777740
118.222244 256.000000 -276.444427
49.777786 256.000000 -184.888885
127.111130 400.000000 -262.222168
49.777786 400.000000 -184.888885
127.111130 256.000000 -262.222168
118.222244 400.000000 -276.444427
35.555588 400.000000 -193.777740
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
118.222244 256.000000 -276.444427
256.000000 256.000000 -304.000000
127.111130 256.000000 -262.222168
256.000000 400.000000 -288.000000
127.111130 400.000000 -262.222168
256.000000 256.000000 -288.000000
256.000000 400.000000 -304.000000
118.222244 400.000000 -276.444427
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 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
255.777832 256.000000 -303.666687
393.555573 256.000000 -276.111115
255.777863 256.000000 -287.666718
384.666748 400.000000 -261.888916
255.777863 400.000000 -287.666718
384.666748 256.000000 -261.888916
393.555573 400.000000 -276.111115
255.777832 400.000000 -303.666687
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
393.555573 256.000000 -276.111115
476.222229 256.000000 -193.444427
384.666748 256.000000 -261.888916
462.000031 400.000000 -184.555573
384.666748 400.000000 -261.888916
462.000031 256.000000 -184.555573
476.222229 400.000000 -193.444427
393.555573 400.000000 -276.111115
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
476.222229 256.000000 -193.444427
503.777832 256.000000 -55.666748
462.000031 256.000000 -184.555573
487.777832 400.000000 -55.666748
462.000031 400.000000 -184.555573
487.777832 256.000000 -55.666748
503.777832 400.000000 -55.666748
476.222229 400.000000 -193.444427
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 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
503.777832 256.000000 -55.666687
476.222229 256.000000 82.111084
487.777832 256.000000 -55.666626
462.000000 400.000000 73.222290
487.777832 400.000000 -55.666626
462.000000 256.000000 73.222290
476.222229 400.000000 82.111084
503.777832 400.000000 -55.666687
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
476.222229 256.000000 82.111084
393.555603 256.000000 164.777710
462.000000 256.000000 73.222290
384.666748 400.000000 150.555420
462.000000 400.000000 73.222290
384.666748 256.000000 150.555420
393.555603 400.000000 164.777710
476.222229 400.000000 82.111084
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
-112.000000 256.000000 944.000000
624.000000 256.000000 944.000000
624.000000 256.000000 -384.000000
-112.000000 256.000000 -384.000000
-112.000000 240.000000 944.000000
624.000000 240.000000 944.000000
624.000000 240.000000 -384.000000
-112.000000 240.000000 -384.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
624.000000 400.000000 944.000000
640.000000 400.000000 944.000000
640.000000 400.000000 -384.000000
624.000000 400.000000 -384.000000
624.000000 256.000000 944.000000
640.000000 256.000000 944.000000
640.000000 256.000000 -384.000000
624.000000 256.000000 -384.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-128.000000 400.000000 944.000000
-112.000000 400.000000 944.000000
-112.000000 400.000000 -384.000000
-128.000000 400.000000 -384.000000
-128.000000 256.000000 944.000000
-112.000000 256.000000 944.000000
-112.000000 256.000000 -384.000000
-128.000000 256.000000 -384.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-112.000000 400.000000 960.000000
624.000000 400.000000 960.000000
624.000000 400.000000 944.000000
-112.000000 400.000000 944.000000
-112.000000 256.000000 960.000000
624.000000 256.000000 960.000000
624.000000 256.000000 944.000000
-112.000000 256.000000 944.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-112.000000 400.000000 -384.000000
624.000000 400.000000 -384.000000
624.000000 400.000000 -400.000000
-112.000000 400.000000 -400.000000
-112.000000 256.000000 -384.000000
624.000000 256.000000 -384.000000
624.000000 256.000000 -400.000000
-112.000000 256.000000 -400.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-112.000000 416.000000 944.000000
624.000000 416.000000 944.000000
624.000000 416.000000 -384.000000
-112.000000 416.000000 -384.000000
-112.000000 400.000000 944.000000
624.000000 400.000000 944.000000
624.000000 400.000000 -384.000000
-112.000000 400.000000 -384.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 256.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 256.000000 320.000000 256.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 256.000000 304.000000 256.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 256.000000 288.000000 256.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 256.000000 336.000000 256.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 256.000000 352.000000 256.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
|
04ecec57648d55abb4b7497ab0243fbceb63bc90 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3830/CH5/EX5.8/Ex5_8.sce | e591eb0a6bfd621557c5bde58a3c130d3ced9e22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 682 | sce | Ex5_8.sce | // Exa 5.8
clc;
clear;
// Given
Va = 2000; // Anode voltage(Volts)
Vd = 100; // Deflecting plates volage(Volts)
a =1.5*10^-2; // axial length in m
Sd= 30*10^-2; // screen distance in m
Ld = 5*10^-2; // deflecting plates length in m
// Solution
// Let,
x = 1.76*10^11 ; // e/m ratio in c/kg
L = Sd + Ld/2 ;
D = (Ld*L*Vd)/(2*a*Va) ; // Deflection produced(m)
Vo = sqrt(2*x*Va); // velocity of electrons in m/kg
printf(' The deflection produced on screen = %.3f cm \n',D*100);
printf(' The velocity of the electrons when they enter the field of the deflecting plates = %.4f * 10^7 m/kg \n', Vo/10^7);
// The answer provided in the textbook is wrong
|
ee4a1d4abd138d99650179e94c326e86084b7b2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1280/CH8/EX8.8/8_8.sce | b91ecd9ff9a69afd3c4a2314fa3ff23ee45be507 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 160 | sce | 8_8.sce | clc
//initialisation of variables
Q= 7.5 //gpm
Vm= 2 //in^3
//CALCULATIONS
N= 231*Q/Vm
//RESULTS
printf ('Theotrical speed of fluid power = %.f rpm',N)
|
def3a4c095983b423bf717ce69add7228dcbdf4b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3638/CH11/EX11.1/Ex11_1.sce | a891c67320259f2abbace738706da1f6f62a2f8e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 826 | sce | Ex11_1.sce | //Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999
//Example 11.1
//OS=Windows XP sp3
//Scilab version 5.5.2
clc;
clear;
//given
//E1 & E2 are the ground level and first excited level of energy respectively
h=6.626e-34;//Planck's constant in SI Units
c=3e8;//speed of electrons in m/s
lambda=694e-9;//wavelength corresponding to the energy gap between E1 & E2
//Let E2-E1=DeltaE
DeltaE=h*c/lambda;
mprintf("\n E2-E1=%e",DeltaE);//Energy gap between E1 & E2 in J
//The answers vary due to round off error
kB=1.38e-23;//Boltzmann constant in SI Units
T=300;//Temperature in K
mprintf("\n kB*T=%e",kB*T);
//Let N2/N1 be N
N=exp(-DeltaE/(kB*T));//Ratio of population density at E2 and E1 energy levels
mprintf("\n N2/N1=%e",N);//The answers vary due to round off error
|
6e4edfcc93c6857f95ac62ecd9688cf461a8c891 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH10/EX10.9/9.sce | bf23234df218f1dbc6ed43bc1a4af25f9de2bec8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 718 | sce | 9.sce | clc
p_vs=0.0563; //bar
phi=0.2;
p_v=phi*p_vs;
p_t=1.0132; //bar
W1=0.622*p_v/(p_t-p_v);
disp("(i) Dew point temperature")
//
t_dp=8+(9-8)*(0.01126-0.01072)/(0.01150-0.01072);
disp("dew point temperature=")
disp(t_dp)
disp("0C")
disp("(ii) Relative humidity of the exit air :")
p_vs_wb=0.0170; //bar
p_vs=0.0234; //bar
t_db=20; //0C
t_wb=15; //0C
p_v=p_vs_wb - (p_t-p_vs_wb)*(t_db-t_wb)/(1527.4-1.3*t_wb);
W2=0.622*p_v/(p_t-p_v);
RH=p_v/p_vs;
disp("Relative humidity=")
disp(RH)
p_v=0.01126; //bar
R=287;
T=308; //K
V=150;
m=(p_t-p_v)*V*10^5/R/T;
disp("(iii) Amount of water vapour added to the air per minute")
amt=m*(W2-W1);
disp("Amount =")
disp(amt)
disp("kg/min") |
4268a96d0b46ddacb005044e6637b2fd34a849a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /851/CH8/EX8.8/Example8_8.sce | 00b6ed11244dcd5e9a8b14b124d8e7e1d492d179 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | WINDOWS-1252 | Scilab | false | false | 676 | sce | Example8_8.sce | //clear//
//Caption:Convolutional Encoding – Transform domain approach
//Example8.8:Convolutional code - Transform domain approach
clc;
D = poly(0,'D');
g1D = 1+D+D^2; //generator polynomial 1
g2D = 1+D^2; //generator polynomial 2
mD = 1+0+0+D^3+D^4; //message sequence polynomial representation
x1D = g1D*mD; //top output polynomial
x2D = g2D*mD; //bottom output polynomial
x1 = coeff(x1D);
x2 = coeff(x2D);
disp(modulo(x1,2),'top output sequence')
disp(modulo(x2,2),'bottom output sequence')
//Result
//top output sequence
// 1. 1. 1. 1. 0. 0. 1.
//
// bottom output sequence
// 1. 0. 1. 1. 1. 1. 1.
|
8f5d83f36ed94e309d4c4efb62c3270e25804935 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH13/EX13.3/13_3.sce | e25ea55b405a2edbc19df41bc3eec15709e1f30e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,109 | sce | 13_3.sce | //Example 13.3
//Newton's Forward Difference Formula
//Page no. 423
clc;close;clear;
printf(' x\t\t y\t\t d\t\t d2\t\t d3\t\t d4\n')
printf('------------------------------------------------------------------------------------------')
h=0.05;
z=[1.00,1.00000;1.05,1.02470;1.10,1.04881;1.15,1.07238;1.20,1.09544;1.25,1.11803;1.30,1.14018]
deff('y=f1(x,s)','y=(z(x,3)+(s-1/2)*z(x,4)+z(x,5)*(3*s^2-6*s+2)/6)/h')
deff('y=f2(x,s)','y=(z(x,4)+z(x,5)*(s-1))/h^2')
deff('y=f3(x,s)','y=z(x,5)/h^3')
for i=3:6
for j=1:9-i
z(j,i)=z(j+1,i-1)-z(j,i-1)
end
end
printf('\n')
for i=1:7
for j=1:6
if z(i,j)==0 then
printf(' \t')
else
printf('%.7f\t',z(i,j))
end
end
printf('\n')
end
s=poly(0,'s')
p=z(5,2);k=4;
for i=3:5
r=1;
for j=1:i-2
r=r*(s+(j-1))
end
r=r*z(k,i)/factorial(j);
k=k-1;
p=p+r;
end
disp(p,'y(s) = ')
printf('\n\ny1(1) = %g',f1(1,0))
printf('\n\ny2(1) = %g',f2(1,0))
printf('\n\ny3(1) = %g',f3(1,0))
printf('\n\ny1(1.025) = %g',f1(1,0.5)) |
413b322ff1be0320980e08d0d2266a99be2f1206 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1583/CH4/EX4.1/FSNT_Ex_4_1.sce | 83cd06deb4f1582ff90a6094db8fc8e16cdf1bb7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | FSNT_Ex_4_1.sce | clc
//Chapter 4:Frequency selective networks and transformers
//example 4.1 page no 108
//given
R=50//load resistance in ohm
B=100//bandwidth in KHz
Cf=5//filter center frequency in MHz
L=R/(2*%pi*10^5)//inductance in micro henry
C=((L)*(2*%pi*Cf*10^6)^2)^-1//capacitance
mprintf('the inductance is %f uH \n the capacitance is %f pF ',L*1e6,C*1e12)
|
15e601a7810159119709eaa1b5d093a595c4f479 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2582/CH5/EX5.4/Ex5_4.sce | 97510c92a53f489881a9c5146b6aa9db1a6eb7b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | sce | Ex5_4.sce | //Ex 5.4
clc;clear;close;
f=1*1000;//HZ
Vs=15;//V
C=0.1;//micro F(Assumed)
R=1/(2*f*C*10^-6);//Hz
disp(R/1000,"For the required design value of R(kohm) : ");
disp("R1 & R2 can be choosen as 10 kohm");
///Answer in the book is wrong
|
b2b0b0ea6b905aa5996f7c5d1eb0f774d69b2918 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH8/EX8.16/Ex8_16.sce | 791095d23c1a3974dd78857d960a0982e3b0bbb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,310 | sce | Ex8_16.sce | // Problem 8.16,Page no.217
clc;clear;
close;
n=10 //Number of coils
sigma=100 //MPa //Bending stress
sigma_s=110 //MPa //Twisting stress
//D=8*d
dell=1.8 //cm //Max extension of of wire
E=200 //GPa //Modulus of Elasticity
G=80 //GPa //Modulus od Rigidity
//Calculation
//M=W*R*sin_alpha=%pi*d**3*sigma_1*32**-1 //(Equation 1) //Bending moment
//As D=8*d
//then R=D*2**-1
//Therefore, R=4*d
//Now substituting values in equation 1 we get
//W*sin_alpha=2454369.3*d**2 (Equation 2)
//T=W*R*cos_alpha=%pi*d**3*sigma_s //Torque (Equation 3)
//Now substituting values in equation 3 we get
//W*cos_alpha=5399612.4*d**2 (Equation 4)
//Dividing Equation 2 by Equation 4 we get,
//tan_alpha=0.4545
alpha=atan(0.4545)*180*%pi**-1
//From Equation 2 we get
//W=2454369.3*d**2*(sin24.443)**-1
//W=5931241.1*d**2 (Equation 5)
//dell=64*W*R**3*n*sec_alpha*(d**4)**-1*((cos_alpha)**2*G**-1+2*sin_alpha**2*E**-1)
//Now substituting values in above equation we get
//W=33140.016*d (Equation 6)
//From Equation 5 and Equation 6 we get
//5931241.1*d**2=33140.016*d
//After simplifying above equation we get
d=33140.016*5931241.1**-1 //m //Diameter of wire
W=33140.016*d //N //MAx Permissible Load
//Result
printf("The Max Permissible Load is %.2f",W);printf(" N")
printf("\n The Wire Diameter is %.6f m",d)
|
5b1f031a75c95c71dbe7d4d48c27fbb28e568da6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH6/EX6.2/Ex6_2.sce | 04b972cf4268881dc83a500b37fe7a7134d2663f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 556 | sce | Ex6_2.sce | //pagenumber 337 example 2
clear
colcur=5*10^-3;//ampere
vce=10;//volt
hfe=100;
hie=600;//ohm
cugain=10;
fqu=10*10^6;//hertz
tracat=3*10^-12;//farad
voltag=26*10^-3;//volt
fbeta1=((((hfe^2)/(cugain^2))-1)/fqu^2)^(1/2);
fbeta1=1/fbeta1;
fq1=hfe*fbeta1;
cbe=colcur/(2*3.14*fq1*voltag);
rbe=hfe/(colcur/voltag);
rbb=hie-rbe;
disp("fbeta = "+string((fbeta1))+"hertz");
disp("f = "+string((fq1))+"hertz");
disp("cbe = "+string((cbe))+"farad");
disp("rbe = "+string((rbe))+"ohm");
disp("rbb = "+string((rbb))+"ohm");
|
49edd34c83081d08cf0ea309021e606db945f8d6 | a66450c821e998e600ef70f5046e74d948d3e439 | /tests/pla_korrekt.tst | b464892e84b5db77b4d5582358abd10fe260030b | [] | no_license | suhrmann/PLA-18 | 76f6f3e23878b83a43ed262fd840c8b6fc15b710 | c6ffe1f4299bf85d59c2900fc522fb30c8c29dda | refs/heads/master | 2020-03-15T13:32:39.398110 | 2018-05-16T14:29:08 | 2018-05-16T14:29:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 434 | tst | pla_korrekt.tst | const c = 6, a = 100;
var n: int , f: real, e:real;
procedure test;
var i : int, k:real, e : int;
begin
f := k+f;
i := 2;
while i <=n do
begin
f := f + k * 1.0;
f := 1.0;
if i = 0
then i := 1 fi;
i := i+1
end
end;
procedure xyz;
f := 1.1;
begin
if n = 0
then
n := c
else
n := a
fi;
call test
end$
|
f20d04d39591cbad9d36ac27f021b92441b9ccde | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH2/EX2.9/9.sce | 8d9955ad63213e34ab7ef67c8f235d9701fe75ab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 135 | sce | 9.sce | clc
d=0.2; //m
g=9.81; //m/s^2
h=0.117; //m
rho=13600; //kg/m^3
p=rho*g*h;
m=(p*%pi/4*d^2)/g;
disp("mass=")
disp(m)
disp("kg") |
76a92bdc97ac8a2b4a3770cd9b0dee99be5044c9 | ba5d14a99711f45c6f3d2d28e4e8c12c9120e536 | /Receber um char.sce | 3bd8b0342fc3a662bf924e6f541975136b11829a | [] | no_license | RuanXavierSantos/Exercicios_Scilab | 0bf7aa6cc0b94e84bd560861c77d7a1a6c17bc2b | 219c1609766e1ac1ad27f9469012d7f3bb6c8dea | refs/heads/main | 2023-09-03T00:50:12.356763 | 2021-10-20T13:29:22 | 2021-10-20T13:29:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 66 | sce | Receber um char.sce | nome=input("Informe um nome: ","string");
mprintf("%c",nome);
|
60481754b426e125989e749cbe367f1fbc53126d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1619/CH1/EX1.7.2/Example1_7_2.sce | f310c5dc659c88a87a22cdc4f477bdfd2f5ed470 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sce | Example1_7_2.sce | // Example 1.7.2 page 1.14
// To calculate the critical angel
clc;
clear;
n1= 1.50; // RI of glass..
n2 = 1; // RI of air...
// According to Snell's law...
// n1*sin(phi1)= n2*sin(phi2);
// From definition of critical angel phi2 = 90 degrees and phi1 will be critical angel
phiC=asind((n2/n1)*sin(%pi/2));
printf('The Critical angel is %.2f degrees',phiC);
|
2162be924fb4fc189747634d7d921817558a3659 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1367/CH9/EX9.2/9_2.sce | 60e412b9918080b1b90a12b5447c1ba450993cd4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 650 | sce | 9_2.sce | //Find Average and Boundary area
//Exa:9.2
clc;
clear;
close ;
n=2^(5-1);//astm no. = 5 in grain/inch^2
//Lineal and Areal magnifications are related as *100 Lineal = *10000 Areal
x=n/(.01*.01);//in grain/inch^2 at 1 x.
a=1/x;//average area in inch^2
a1=2.54*2.54*a;//average area in cm.^2
disp(a1,"Average area of one grain (in sq cm) = ");
l=sqrt(x);//grains/inch of length
s=(1/l)^2;//surface area in sq inch
s6=6*s;//surface area of 6 surfaces of cubic grain in sq inch
b=0.5*s6*(l^3);//total boundary area in sq inch
b1=b/(2.54);//total boundary area in sq cm
disp(b1,"Boundary Area per cubic centimetre of steel (in sq cm) = "); |
272d2314c3cb6cd9fe99a1f1efa52ffa534e96b7 | 98efda43218be3d9e665771c28742517fd4f334f | /Medfilt1/medfilt1.sci | a32ebb1f83263d4f365b71c5426e2f0974eb07ab | [] | no_license | ankurmallick/Scilab_spt | bded5b3ed7c5618770ef4bb997b5f61aa7732cd9 | e35c986f70147ee773796c839153ed7adbda3941 | refs/heads/master | 2021-01-17T06:48:24.162281 | 2016-12-05T12:54:24 | 2016-12-05T12:54:24 | 43,445,584 | 0 | 2 | null | 2015-12-10T05:15:44 | 2015-09-30T16:47:57 | Scilab | UTF-8 | Scilab | false | false | 1,024 | sci | medfilt1.sci | function y = medfilt1(x,n,blksz,DIM)
funcprot(0);
if(argn(2)<4|isempty(DIM))
DIM=find(size(x)>1,1); //First non-singleton dimension
end
if(DIM>ndims(x))
error('Invalid Dimensions');
end
perm=[DIM, 1:DIM-1, DIM+1:ndims(x)];
x=permute(x,perm); //Makes DIM the leading dimension
S=size(x);
if(argn(2)<3|isempty(blksz))
blksz=S(1); //Default Value of block size
else
blksz=blksz(:);
end
if(argn(2)<2|isempty(n))
n=3; //Default value of n
end
x1=matrix(x,1,prod(S));
T=[type(x1), type(blksz'), type(DIM)]; //all inputs should be of type double
if(~and(T==1))
error('Invalid data type');
end
y=zeros(x);
L=floor(n/2);
U=ceil((N/2)-1);
//Implementing Median Filtering
for i=1:prod(S(2:length(S)))
x1=x(:,i)
X=[zeros(1,L); x1; zeros(1,U)];
end
iperm(perm)=1:length(perm);
Y=permute(Y,iperm); //Converting Y to the original shape of x
endfunction
endfunction
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.