blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 6
214
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
50
| license_type
stringclasses 2
values | repo_name
stringlengths 6
87
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 15
values | visit_date
timestamp[us]date 2016-08-04 09:00:04
2023-09-05 17:18:33
| revision_date
timestamp[us]date 1998-12-11 00:15:10
2023-09-02 05:42:40
| committer_date
timestamp[us]date 2005-04-26 09:58:02
2023-09-02 05:42:40
| github_id
int64 436k
586M
⌀ | star_events_count
int64 0
12.3k
| fork_events_count
int64 0
6.3k
| gha_license_id
stringclasses 7
values | gha_event_created_at
timestamp[us]date 2012-11-16 11:45:07
2023-09-14 20:45:37
⌀ | gha_created_at
timestamp[us]date 2010-03-22 23:34:58
2023-01-07 03:47:44
⌀ | gha_language
stringclasses 36
values | src_encoding
stringclasses 17
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 1
class | length_bytes
int64 5
10.4M
| extension
stringclasses 15
values | filename
stringlengths 2
96
| content
stringlengths 5
10.4M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7782005d63e8a281ca0d432f6b3b3175025bb72b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1523/CH2/EX2.31/2_31.sce
|
60c78c31881557d88f3275118f3706759a14d7f4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 518
|
sce
|
2_31.sce
|
//Network Theorem 1
//page no-2.34
//example2.30
disp("Applying KCL to node a:");
disp("0.5*Va-0.2*Vb = 34.2");....//equation 1
disp("Applying KCL to node b:");
disp("0.1*Va-0.4*Vb = -32.4");...//equation 2
disp("Solving equations 1 and 2");...//solving equations in matrix form
A=[0.5 -0.2;0.1 -0.4];
B=[34.2 -32.4]'
X=inv(A)*B;
disp(X);
disp("Va= 112 V");
disp("Vb= 109 V");
x=112;
y=109;
I1=(120-x)/0.2;
I2=(x-y)/0.3;
I3=(110-y)/0.1;
mprintf("\nI1= %.f A \nI2= %.f A \nI3= %.f A",I1,I2,I3);
|
15ed27bf8c8750532daba138edd664d9cfc43e1f
|
9126fc60220eefdef9ef56c8ab92d04aea0a4a6a
|
/test1.tst
|
280cf208217fee00476800327754d6fa881b1a51
|
[] |
no_license
|
anjanesh/sitra
|
1f75b3a94a9f19303ee932333973256fdf960de8
|
6270e80b556b035cb255bb9ae343646163f9c8ec
|
refs/heads/main
| 2023-03-09T00:22:34.336729
| 2021-02-20T02:49:46
| 2021-02-20T02:49:46
| 340,545,336
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 57
|
tst
|
test1.tst
|
"Untitled"
"Lab","Lab 1","D:\Anjanesh\Sitra\Lab 1.lab"
|
6dd66e289d198206a763da095afeec8b8f8a7ef1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1241/CH11/EX11.5/exa11_5.sce
|
ba35dd7d4daead611ac5fa1a7f97c1ad787de016
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 874
|
sce
|
exa11_5.sce
|
//Example 11-5//
//compute output voltage for the circuit in fig. 11-13//
clc
//clears the console//
clear
//clears all existing variables//
disp('switch configuration ABCD is 0110 ')
E=8
RA=1
RB=2
RC=4
RD=8
Rf=1
//Given all the resistance values in kilo ohms and the common voltage E in volts//
disp('the current throught resistor RA in milli amps is: ')
IA=0
//switch A is open//
disp(IA)
disp('the current throught resistor RB in milli amps is: ')
IB=E/RB
disp(IB)
disp('the current throught resistor RC in milli amps is: ')
IC=E/RC
disp(IC)
disp('the current throught resistor RD in milli amps is: ')
ID=0
//switch D is open//
disp(ID)
Itot=IA+IB+IC+ID
//total current is denoted by Itot//
If=Itot
Eo=If*Rf
Eo=Eo*(-1)
//Eo denotes output voltage//
disp('Output voltage of the circuit in volts is: ')
disp(Eo)
//result is displayed//
|
a3a6e3ce8aec13654cca9b5f105919ac4f113ac9
|
0f1f220f69c42220ef04954615f32bfa967fb649
|
/webTestFiles/testXML/testFormField.tst
|
6fc2063789934a02a33b1532940bb3b4f660ff38
|
[
"MIT"
] |
permissive
|
claudio-tortorelli/Bellerofonte
|
edc2fed23225128c4a5519edbf19f5eb2b675d75
|
0a60184d9f750437e037a601833965713afb2cd3
|
refs/heads/main
| 2023-08-27T10:18:50.022426
| 2021-11-07T13:45:56
| 2021-11-07T13:45:56
| 425,290,210
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 9,906
|
tst
|
testFormField.tst
|
<orbilio.webTest.bellerofonte.Macro_test ref-id="0">
<object-fields>
<_name>
<string>testFormField.txt</string>
</_name>
<_tests>
<java.util.Vector ref-id="1">
<object-fields>
<elementData>
<java.lang.Object-array length="10" ref-id="2">
<orbilio.webTest.bellerofonte.CheckFormField ref-id="3">
<object-fields>
<_expectedForm>
<string>0</string>
</_expectedForm>
<_expectedField>
<string>uname</string>
</_expectedField>
<_host declaring="orbilio.webTest.bellerofonte.Single_test">
<string>127.0.0.1/</string>
</_host>
<_path declaring="orbilio.webTest.bellerofonte.Single_test">
<string></string>
</_path>
<_myNumber declaring="orbilio.webTest.bellerofonte.Single_test">
<int val="1"/>
</_myNumber>
<_myName declaring="orbilio.webTest.bellerofonte.Single_test">
<string>CheckFormField</string>
</_myName>
<_finalResult declaring="orbilio.webTest.bellerofonte.Single_test">
<string>PASSED</string>
</_finalResult>
<_timeOfExecution declaring="orbilio.webTest.bellerofonte.Single_test">
<string>0.10</string>
</_timeOfExecution>
<serialVersionUID>
<long val="-1806243785876125777"/>
</serialVersionUID>
</object-fields>
</orbilio.webTest.bellerofonte.CheckFormField>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
</java.lang.Object-array>
</elementData>
<elementCount>
<int val="1"/>
</elementCount>
<capacityIncrement>
<int val="0"/>
</capacityIncrement>
<serialVersionUID>
<long val="-2767605614048989439"/>
</serialVersionUID>
</object-fields>
</java.util.Vector>
</_tests>
<_reports>
<java.util.Vector ref-id="4">
<object-fields>
<elementData>
<java.lang.Object-array length="10" ref-id="5">
<orbilio.webTest.bellerofonte.Report ref-id="6">
<object-fields>
<_id>
<string>testFormField.txt</string>
</_id>
<_date>
<string>2-ago-2003 13.57.38</string>
</_date>
<_target>
<string>http://127.0.0.1/index.php</string>
</_target>
<_resultsStr>
<java.util.Vector ref-id="7">
<object-fields>
<elementData>
<java.lang.Object-array length="20" ref-id="8">
<string> <line>---------------------------------------------------</line>
<line>--</line>
</string>
<string> <line>REPORT OF TEST: testFormField.txt - 2-ago-2003 13.5</line>
<line>7.38</line>
</string>
<string> <line>---------------------------------------------------</line>
<line>--</line>
</string>
<string> </string>
<string> <line>1.0] TEST: "CheckFormField" | Url: http://127.0.0.1</line>
<line>/index.php</line>
</string>
<string>   Result expected: "Form: 0"</string>
<string>   Result expected: "Field: uname"</string>
<string>   + TEST PASSED: The form has the field expected</string>
<string> </string>
<string>   # Seconds elapsed to accomplish the test: 0.10</string>
<string> </string>
<string> <line>/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/</line>
<line>\</line>
</string>
<string> </string>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
</java.lang.Object-array>
</elementData>
<elementCount>
<int val="13"/>
</elementCount>
<capacityIncrement>
<int val="0"/>
</capacityIncrement>
<serialVersionUID>
<long val="-2767605614048989439"/>
</serialVersionUID>
</object-fields>
</java.util.Vector>
</_resultsStr>
<_resultsToCompare>
<java.util.Vector ref-id="9">
<object-fields>
<elementData>
<java.lang.Object-array length="10" ref-id="10">
<string>CheckFormField</string>
<string>PASSED</string>
<string>0.10</string>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
</java.lang.Object-array>
</elementData>
<elementCount>
<int val="3"/>
</elementCount>
<capacityIncrement>
<int val="0"/>
</capacityIncrement>
<serialVersionUID>
<long val="-2767605614048989439"/>
</serialVersionUID>
</object-fields>
</java.util.Vector>
</_resultsToCompare>
<serialVersionUID>
<long val="-6043206093934986438"/>
</serialVersionUID>
</object-fields>
</orbilio.webTest.bellerofonte.Report>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
<null/>
</java.lang.Object-array>
</elementData>
<elementCount>
<int val="1"/>
</elementCount>
<capacityIncrement>
<int val="0"/>
</capacityIncrement>
<serialVersionUID>
<long val="-2767605614048989439"/>
</serialVersionUID>
</object-fields>
</java.util.Vector>
</_reports>
<_actualRep>
<ref ref-id="6"/>
</_actualRep>
<_options>
<orbilio.webTest.bellerofonte.TestOption ref-id="11">
<object-fields>
<_protocol>
<string>http://</string>
</_protocol>
<_host>
<string>127.0.0.1/</string>
</_host>
<_path>
<string></string>
</_path>
<_fileName>
<string>index.php</string>
</_fileName>
<_cookie>
<true/>
</_cookie>
<_redirect>
<true/>
</_redirect>
<_refresh>
<true/>
</_refresh>
<_iFrame>
<true/>
</_iFrame>
<_userAgent>
<string>Bellerofonte ver. 1.0</string>
</_userAgent>
<_defOpt>
<false/>
</_defOpt>
<_msgLen>
<false/>
</_msgLen>
<_defChar>
<string></string>
</_defChar>
<_defType>
<string></string>
</_defType>
<_errExc>
<true/>
</_errExc>
<_errScript>
<true/>
</_errScript>
<_imgTxt>
<false/>
</_imgTxt>
<_httpHead>
<false/>
</_httpHead>
<_caseSens>
<false/>
</_caseSens>
<_paramValidate>
<false/>
</_paramValidate>
<_parseWarn>
<false/>
</_parseWarn>
<_postChar>
<false/>
</_postChar>
<_redirDelay>
<string>0</string>
</_redirDelay>
<_scripting>
<true/>
</_scripting>
<serialVersionUID>
<long val="-1627668515131692982"/>
</serialVersionUID>
</object-fields>
</orbilio.webTest.bellerofonte.TestOption>
</_options>
<serialVersionUID>
<long val="2075604539791796767"/>
</serialVersionUID>
</object-fields>
</orbilio.webTest.bellerofonte.Macro_test>
|
7251a3d01fec18003d45d441a0a352f5153624ab
|
6e257f133dd8984b578f3c9fd3f269eabc0750be
|
/ScilabFromTheoryToPractice/CreatingPlots/testsurfcolormode.sce
|
5ee62ba7e47272f735454ff97963c983bd277ea0
|
[] |
no_license
|
markusmorawitz77/Scilab
|
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
|
7c98963a7d80915f66a3231a2235010e879049aa
|
refs/heads/master
| 2021-01-19T23:53:52.068010
| 2017-04-22T12:39:21
| 2017-04-22T12:39:21
| 89,051,705
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 494
|
sce
|
testsurfcolormode.sce
|
// evaluate over a grid
x=[-1:0.2:1];y=x;[X,Y]=meshgrid(x,y);
Z=X.^2-Y.^2;
// change the color table
clf;
F=gcf();F.color_map=jetcolormap(8);
// surface display
subplot(221)
surf(x,y,Z)
E=gce();E.color_mode=0;
xtitle('color_mode=0')
subplot(222)
surf(x,y,Z)
E=gce();E.color_mode=1;
xtitle('color_mode=1 (by default)')
subplot(223)
surf(x,y,Z)
E=gce();E.color_mode=-1;
xtitle('color_mode=-1')
subplot(224)
surf(x,y,Z)
E=gce();E.color_mode=4;E.color_flag=0;
xtitle('color_mode=4, color_flag=0')
|
2cc0ac6e9864df6d3b2e62a4e6c34bd655932144
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1757/CH12/EX12.5/EX12_5.sce
|
7d0041a6a779af9144084e430539e9e487c897e3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 620
|
sce
|
EX12_5.sce
|
// Example12.5 // to determine the output time and duty cycle of V/T converter
clc;
clear;
close;
Vin = 5 ;
C = 0.1*10^-6 ;
R = 10*10^3 ;
C1 = 100*10^-6 ;
// The output time of a V/T converter is given as
T = (7.5*C1)/(Vin) ;
disp('The output time of a V/T converter is =' +string(T)+ ' sec');
TH = 0.075 ;
TL=TH ; // we consider
// The duty cycle of V?T converter
D = (TL+TH)/(TH) ;
disp('The duty cycle of V?T converter is = '+string(D)+ ' ');
// The output voltage of an integrator is define as
Vio = -(Vin)/(R*C)*T ;
disp('The output voltage of an integrator is is = '+string(Vio)+ ' V');
|
5ec7e52fe2012499ea184cf0c5315c80825b6098
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1658/CH21/EX21.8/Ex21_8.sce
|
05fd27851e1b5ebec2067e17500adaa94a41056e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 545
|
sce
|
Ex21_8.sce
|
clc;
VCC=10;
R1=800;
R2=200;
R3=600;
R4=200;
R5=100;
R6=1*10**3;
B=100;
B2=B;
VBE=0.7;
RE=200;
VR2=VCC*(R2/(R1+R2));
IE1=(VR2-VBE)/RE;
IC1=IE1;
disp('mA',IC1*10**3,"IC1=");
VC1=VCC-IC1*R3;
VE1=IE1*R4;
VCE1=VC1-VE1;
disp('V',VCE1*1,"VCE1=");
VE2=VC1-(-VBE);
IE2=(VCC-VE2)/R6;
IC2=IE2;
VC2=IC2*R5;
VCE2=VC2-VE2;
disp('V',VCE2*1,"VCE2=");
re1=25/IE1*10**-3;
re2=25/IE2*10**-3;
Ri2=B2*(re2+R6);
R01=(R3*Ri2)/(R3+Ri2);
Av1=R01/(re1+R4);
disp(Av1*1,"Av1=");
Av2=1;
disp(Av2*1,"Av2=");
Av=Av1*Av2;
disp(Av*1,"Av=");
|
13593c9753c503563539100061f046d06e0c4728
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1871/CH5/EX5.24/Ch05Ex24.sce
|
7bbd47c964bed23f0e9a9ffb63a600c4425f32f6
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 576
|
sce
|
Ch05Ex24.sce
|
// Scilab code Ex5.24: Pg:232 (2008)
clc;clear;
Lambda = 5000e-08; //Mean wavelength of light, cm
theta = 10e-03; // Smallest angular separation resolvable by a telescope objective, degree
theta = %pi/180*(1/1000); // The smallest angular separation resolvable by a telescope objective, radian
// As theta = (1.22*Lambda)/a, solving for a
a = 1.22*Lambda/theta; // Diameter of an objective of the telescope, cm
printf("\nThe diameter of an objective of the telescope = %3.1f cm", a);
// Result
// The diameter of an objective of the telescope = 3.5 cm
|
7c9cb00e554019d7f93e6d5d42e7d23f8dfc6ab3
|
ac66d3377862c825111275d71485e42fdec9c1bd
|
/Resources/res/map/map1208.sce
|
dd9c7784f3acb305e073d757ead4c974f70fb60b
|
[] |
no_license
|
AIRIA/CreazyBomber
|
2338d2ad46218180f822682d680ece3a8e0b46c3
|
68668fb95a9865ef1306e5b0d24fd959531eb7ad
|
refs/heads/master
| 2021-01-10T19:58:49.272075
| 2014-07-15T09:55:00
| 2014-07-15T09:55:00
| 19,776,025
| 0
| 2
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 4,008
|
sce
|
map1208.sce
|
<?xml version="1.0" encoding="UTF-8"?>
<Project Name="map1208" Width="13" Height="11" CellSize="40" BackgroundSize="1" Background="9plus.png">
<Cell Name="幽灵-右" X="1" Y="1" arg0="3" arg1="1.00" />
<Cell Name="md-履带-左" X="2" Y="1" arg0="2" />
<Cell Name="md-履带-左" X="3" Y="1" arg0="2" />
<Cell Name="md-履带-左" X="4" Y="1" arg0="2" />
<Cell Name="md-履带-左" X="5" Y="1" arg0="2" />
<Cell Name="md-履带-左" X="6" Y="1" arg0="2" />
<Cell Name="md-履带-左" X="7" Y="1" arg0="2" />
<Cell Name="md-履带-左" X="8" Y="1" arg0="2" />
<Cell Name="md-履带-左" X="9" Y="1" arg0="2" />
<Cell Name="md-履带-下" X="10" Y="1" arg0="1" />
<Cell Name="喷火口-左" X="11" Y="1" arg0="2" arg1="2,0" arg2="9" />
<Cell Name="出生点" X="1" Y="2" />
<Cell Name="墙2" X="3" Y="2" />
<Cell Name="墙2" X="5" Y="2" />
<Cell Name="墙2" X="7" Y="2" />
<Cell Name="墙2" X="9" Y="2" />
<Cell Name="md-履带-下" X="10" Y="2" arg0="1" />
<Cell Name="幽灵-左" X="11" Y="2" arg0="2" arg1="1.00" />
<Cell Name="墙2" X="2" Y="3" />
<Cell Name="墙2" X="4" Y="3" />
<Cell Name="墙2" X="6" Y="3" />
<Cell Name="墙2" X="8" Y="3" />
<Cell Name="md-履带-下" X="10" Y="3" arg0="1" />
<Cell Name="幽灵-左" X="11" Y="3" arg0="2" arg1="1.00" />
<Cell Name="喷火口-右" X="1" Y="4" arg0="3" arg1="2,0" arg2="5" />
<Cell Name="md-履带-右" X="2" Y="4" arg0="3" />
<Cell Name="md-履带-右" X="3" Y="4" arg0="3" />
<Cell Name="md-履带-右" X="4" Y="4" arg0="3" />
<Cell Name="md-履带-右" X="5" Y="4" arg0="3" />
<Cell Name="md-履带-右" X="6" Y="4" arg0="3" />
<Cell Name="md-履带-右" X="7" Y="4" arg0="3" />
<Cell Name="md-履带-右" X="8" Y="4" arg0="3" />
<Cell Name="md-履带-右" X="9" Y="4" arg0="3" />
<Cell Name="md-履带-右" X="10" Y="4" arg0="3" />
<Cell Name="喷火口-左" X="11" Y="4" arg0="2" arg1="2,0" arg2="5" />
<Cell Name="墙2" X="1" Y="5" />
<Cell Name="md-履带-下" X="2" Y="5" arg0="1" />
<Cell Name="墙2" X="3" Y="5" />
<Cell Name="墙2" X="5" Y="5" />
<Cell Name="墙2" X="7" Y="5" />
<Cell Name="墙2" X="9" Y="5" />
<Cell Name="墙2" X="11" Y="5" />
<Cell Name="幽灵-右" X="1" Y="6" arg0="3" arg1="1.00" />
<Cell Name="md-履带-下" X="2" Y="6" arg0="1" />
<Cell Name="墙2" X="4" Y="6" />
<Cell Name="墙2" X="6" Y="6" />
<Cell Name="墙2" X="8" Y="6" />
<Cell Name="墙2" X="10" Y="6" />
<Cell Name="喷火口-右" X="1" Y="7" arg0="3" arg1="2,0" arg2="5" />
<Cell Name="md-履带-左" X="2" Y="7" arg0="2" />
<Cell Name="md-履带-左" X="3" Y="7" arg0="2" />
<Cell Name="md-履带-左" X="4" Y="7" arg0="2" />
<Cell Name="md-履带-左" X="5" Y="7" arg0="2" />
<Cell Name="md-履带-左" X="6" Y="7" arg0="2" />
<Cell Name="md-履带-左" X="7" Y="7" arg0="2" />
<Cell Name="md-履带-左" X="8" Y="7" arg0="2" />
<Cell Name="md-履带-左" X="9" Y="7" arg0="2" />
<Cell Name="md-履带-左" X="10" Y="7" arg0="2" />
<Cell Name="喷火口-左" X="11" Y="7" arg0="2" arg1="2,0" arg2="5" />
<Cell Name="墙2" X="1" Y="8" />
<Cell Name="墙2" X="2" Y="8" />
<Cell Name="墙2" X="3" Y="8" />
<Cell Name="墙2" X="4" Y="8" />
<Cell Name="墙2" X="5" Y="8" />
<Cell Name="墙2" X="6" Y="8" />
<Cell Name="墙2" X="7" Y="8" />
<Cell Name="墙2" X="8" Y="8" />
<Cell Name="墙2" X="9" Y="8" />
<Cell Name="md-履带-下" X="10" Y="8" arg0="1" />
<Cell Name="幽灵-左" X="11" Y="8" arg0="2" arg1="1.00" />
<Cell Name="蝙蝠(怪)" X="1" Y="9" arg0="8" />
<Cell Name="箱子1" X="2" Y="9" />
<Cell Name="通关点-1" X="3" Y="9" />
<Cell Name="md-履带-左" X="4" Y="9" arg0="2" />
<Cell Name="md-履带-左" X="5" Y="9" arg0="2" />
<Cell Name="md-履带-左" X="6" Y="9" arg0="2" />
<Cell Name="md-履带-左" X="7" Y="9" arg0="2" />
<Cell Name="md-履带-左" X="8" Y="9" arg0="2" />
<Cell Name="md-履带-左" X="9" Y="9" arg0="2" />
<Cell Name="md-履带-左" X="10" Y="9" arg0="2" />
<Cell Name="幽灵-左" X="11" Y="9" arg0="2" arg1="1.00" />
</Project>
|
c684bcb618068763a14c944414196d114694cef0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1299/CH15/EX15.4/example15_4.sce
|
13b39c7975b55042fb4528b339eb182f36ac81ca
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 209
|
sce
|
example15_4.sce
|
//Example 15.4
//Transfer function of Gyroscope
clear;clc;
xdel(winsid());
//in case of Gyroscope the equation is
disp("(J*s^2+B*s+K)theta(s)=H*w(s)")
//therefore
disp("theta(s)/w(s)=H/J*s^2+B*s+K")
|
71da173473adde56a2390838a6f29462beeaef9c
|
717ddeb7e700373742c617a95e25a2376565112c
|
/1766/CH9/EX9.17/EX9_17.sce
|
1b77c850225732b365c49b3baac7387547c1663a
|
[] |
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
| 413
|
sce
|
EX9_17.sce
|
clc;funcprot(0);//Example 9.17
//Initilisation of Variables
N1=3;..//Number of shields in first scenario
N2=2;..//Number of shields in second scenario
//calculations
Q3byQ0=1/(N1+1)
Pr1=1-(Q3byQ0)
Q2byQ0=1/(N2+1)
Pr2=1-(Q2byQ0)
disp(Pr1*100,"Percentage reduction in heat transfer rate when Number of shields is 3")
disp(Pr2*100,"Percentage reduction in heat transfer rate when Number of shields is 2")
|
c7ffd524fb4484178b7c7d0b836ebc7219c8fe58
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2660/CH9/EX9.6/Ex9_6.sce
|
68bf8a400be679d64f35358e2179eb43ff0021d2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 968
|
sce
|
Ex9_6.sce
|
clc
minc = 0.01 // minimum clearance in mm
bs = 25 // basic size in mm
maxc = 0.02 // maximum clearance in mm
x=poly(0,'x')
y=1.5*x
x=roots(y+0.01+x-0.02)
y=horner(y,x)
// hole basis system
low_h1 = bs // low limit of hole in mm
high_h1 = bs+y // high limit of hole in mm
u_s = low_h1-minc // upper limit of shaft in mm
low_s1 = u_s-x // lower limit of shaft in mm
// shaft basis system
high_s = bs // high limit of shaft in mm
low_s2 = bs-x // low limit of shaft in mm
low_h2 = bs+minc // low limit of hole in mm
high_h2 = low_h2+y // high limit of hole in mm
printf("Hole basis system \n Lower limit of hole = %d mm\n Higher limit of hole = %0.3f mm\n Higher limit of shaft = %0.3f mm \n Lower limit of shaft = %0.3f mm", low_h1,high_h1,u_s,low_s1)
printf("\n Shaft basis system \n high limit of shaft = %0.3f mm\n lower limit of shaft = %0.3f mm\n lower limit of hole = %0.3f mm\n upper limit of hole = %0.3f mm" , high_s,low_s2,low_h2,high_h2)
|
cf089b3d42403d5da3a6569b26b7a2072d9887d8
|
903f095ccddc6ac2990aff02be300cd6229a2a99
|
/practical-classes/single-value-decomposition-lena.sce
|
4496661d24cf0b33db266d77d3a2bd28190f61cd
|
[] |
no_license
|
pdelfino/linear-algebra-numerical-methods
|
dfb39b8500eba28cc884ecb31a948f51517f1503
|
065353c0be82db134506a7b4922e08cfe77d918c
|
refs/heads/master
| 2021-06-10T20:45:46.654441
| 2020-06-15T11:48:01
| 2020-06-15T11:48:01
| 98,227,297
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,527
|
sce
|
single-value-decomposition-lena.sce
|
//a função recebe A, a matrix que representa a imagem e o parâmetro p
//o parâmetro p indica o percentual de valores positivos
//quanto maior esse percentual mais nítida é a imagem
function compressed_image=compress_im(A,b)
//para limpar o "canvas" vou limpar o ambiente da imagem anterior
// os comandos abaixo fazem isso e limpam o terminal
close
clear
clc
//chamo a função SVD em relação à matrix A
//ela será "fatorada" em U,S e V
[U,S,V]= svd(A)
[row,col] = size(U);
//faço uma contagem dos valores singulares positivos de A
r = 0;
for j=1:row //vou iterar em todas as linhas de U
if U(j,j)>0 //cada elemento positivo da diagonal de U será contado
r = r + 1;
end
end
//num de valores positivos - percentual vezes r total
post_num = p*r;
s = post_num
//organizando as partes necessárias para o comando do enunciado que
// irá encerrar a função de compressão
U_part = U(:,1:s);
S_part = S(1:s,1:s);
V_t = V';
V_t_part= V_t(1:s,:);
compressed_image=U_part*S_part*V_t_part
endfunction
function A = visualization(A_matrix)
A = A_matrix;
m=512;
n=512
x=[1:m]
y=[1:n]
xset("colormap",graycolormap(256))
isoview(0,512,0,512)
disp_image = grayplot(x, y, A);
endfunction
A = read("lena.csv",m,n);
p=0.05;
K = compress_im(A,p);
//vou chamar a função visualização para "imprimir" a imagem comprimida
visualization(K);
|
7430ae73ff93e4b199b5eb53784f85107fd28339
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/821/CH5/EX5.42/5_42.sce
|
c895266a7dbb66a73d426c6c94c9226248b04808
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 264
|
sce
|
5_42.sce
|
printf('If the yield of NH3 is 12.2mol percent,x=0.122');
x=0.122;//yield of NH3 in moles//
Kp=1.48*10^-5;//Kp value of the equation in atm^-2//
P=sqrt((256*x^2)/(27*Kp*(1-x)^4));//pressure of the system in atm//
printf('\nPressure of the system=P=%fatm',P);
|
c808f9b0042e582445c3072edeb53f1380f2d196
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/497/CH13/EX13.3/Chap13_Ex3.sce
|
7fb0be57a0413af9e1b7b57bc62d4d9d8361a5d7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,812
|
sce
|
Chap13_Ex3.sce
|
//Kunii D., Levenspiel O., 1991. Fluidization Engineering(II Edition). Butterworth-Heinemann, MA, pp 491
//Chapter-13, Example 3, Page 332
//Title: Effect of Particle Size on h
//==========================================================================================================
clear
clc
//INPUT
rhos=2700;//Density of solids in kg/m^3
Cps=755;//Specific heat capacity of the solid in J/kg K
ks=1.2;//Thermal conductivity of solids in W/m k
kg=0.028;//Thermal concuctivity of gas in W/m k
ephsilonmf=0.476;//Void fraction at minimum fluidization condition
dp1=10E-3;//Particle size for which h=hmax in m
hmax=250;//Max. heat transfer coefficient in W/m^2 K
nw=5;//Bubble frequency in s^-1
delta=0.1;//Fraction of bed in bubbles
deltaw=0.1;//Fraction of bed in bubbles in wall region
dp=2E-3;//Diameter of particle in m
//CALCULATION
x=ks/kg;
phib=0.11;
phiw=0.17;
ke=ephsilonmf*kg+(1-ephsilonmf)*ks*[1/((phib*(ks/kg))+(2/3))];//Effective thermal conductivity of bed from Eqn.(3)
hpacket=1.13*[ke*rhos*(1-ephsilonmf)*Cps*nw/(1-deltaw)]^0.5;//Heat transfer coefficient for the packet of emulsion from Eqn.(11)
ephsilonw=ephsilonmf;//Void fraction in the wall region
kew=ephsilonw*kg+(1-ephsilonw)*ks*[(phiw*(ks/kg)+(1/3))^-1];//Effective thermal conductivity in the wall region with stagnant gas from Eqn.(4)
y=(2*kew/dp1)+(hmax*hpacket)/(((1-deltaw)*hpacket)-hmax);//Calculating the term alphaw*Cpg*rhog*uo from Eqn.(16) by rearranging it
h=(1-deltaw)/((2*kew/dp+y*(dp/dp1)^0.5)^-1+hpacket^-1);//Heat transfer coeeficient from Eqn.(11) by using the value of y
//OUTPUT
mprintf('\nThe heat transfer coefficient for paricle size of %fm = %fW/m^2 K',dp,h);
//====================================END OF PROGRAM ======================================================
|
80ca7a184d15be7ab9407d38aa199ec5766d77bc
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3137/CH1/EX1.2/Ex1_2.sce
|
20dfb34b9040bab10ca5083dbff079e62f314e94
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 402
|
sce
|
Ex1_2.sce
|
//Initilization of variables
P=100 //lb
Q=120 //lb
theta=((30*%pi)/180) //radians
//Calculations
R_x=Q*cos(theta) //lb
R_y=Q*sin(theta)-P //lb
R=sqrt(R_x^2+R_y^2) //lb Triangle law
Theta_1=((atan(R_y/R_x))*180)/%pi //degrees
Theta_R=360+Theta_1 //degrees
//Result
clc
printf('The resultant of the force system is:%f N\n',R) //lb
printf('The resultant is at:%f degrees',Theta_R) //Degrees
|
04632078484efd11968f40896fc96978e0d5cb7a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2621/CH7/EX7.4/Ex7_4.sce
|
6d40a2d49c2879c69f4d4cd924c9fe35df53e223
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 444
|
sce
|
Ex7_4.sce
|
// Example 7.4
clc;
clear;
close;
// Given data
format('v',5);
fc= 1*10^3;// in Hz
alpha= 1.414;
C= 0.1*10^-6;// in F (assume)
C_desh= C*alpha^2/4;// in F
C_desh= C_desh*10^6;// in µF
disp("The value of C'' is : "+string(C_desh)+" µF");
C_desh= C_desh*10^-6;// in F
R_desh= 1/(2*%pi*fc*sqrt(C*C_desh));// in Ω
R_desh= R_desh*10^-3;// in kΩ
disp("The value of R'' is : "+string(R_desh)+" kΩ (standard value 2.2 kΩ)")
|
9937d60249c0377ed8fa7cdaa98d41c66c8569dc
|
b4980b761e4b88d097e526fe06ebef2383d3d613
|
/lab08/Loop.tst
|
1c31754caf7887169b667173dbeeb525bd9fb437
|
[] |
no_license
|
Vineeth-Kada/Computer-Systems-Design
|
aa42b053c709fdbf06713dc3e1e2649faa02c65d
|
4c05e393e057ffb1540c74a53a0cb17f7129d8f8
|
refs/heads/main
| 2023-06-17T06:27:02.442583
| 2021-07-15T10:43:37
| 2021-07-15T10:43:37
| 289,896,111
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 2,012
|
tst
|
Loop.tst
|
load Computer.hdl,
compare-to Loop.cmp,
output-file Loop.out,
output-list time%S1.7.1 reset%D1.8.1 RAM64[16]%D1.8.1 RAM64[17]%D1.8.1 RAM64[18]%D1.8.1;
ROM32K load Loop.hack,
/*** Sum of first 10 natural numbers ********************************************************/
// N = 10
set RAM64[16] 10,
tick, tock;
// int i=1
tick, tock;
tick, tock;
// int sum=0
tick, tock;
tick, tock,output;
/* while(i<=10):
* sum = sum+i;
* i++;
* After 10 iterations i should be 11 and sum should be 55*/
repeat 10{
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock, output;
}
/*** Sum of first 30 natural numbers ********************************************************/
set reset 1,
tick,tock, output;
set reset 0,
// N = 30
set RAM64[16] 30,
tick, tock;
// int i=1
tick, tock;
tick, tock;
// int sum=0
tick, tock;
tick, tock,output;
/* while(i<=30):
* sum = sum+i;
* i++;
* After 30 iterations i should be 31 and sum should be 465*/
repeat 30{
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock, output;
}
/*** Sum of first 100 natural numbers ********************************************************/
set reset 1,
tick,tock, output;
set reset 0,
// N = 100
set RAM64[16] 100,
tick, tock;
// int i=1
tick, tock;
tick, tock;
// int sum=0
tick, tock;
tick, tock,output;
/* while(i<=100):
* sum = sum+i;
* i++;
* After 100 iterations i should be 101 and sum should be 5050*/
repeat 100{
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock;
tick, tock, output;
}
|
0790303b01d6fa62ec008c8467ebb13ce43c9cb8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/716/CH2/EX2.4.b/Solved_Ex2_4b.sce
|
534c6e36b836d051db7c1c069f5d4b63a0b29c52
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 520
|
sce
|
Solved_Ex2_4b.sce
|
//find power of periodic signal x(t)=exp(j(2t+pi/4))
clc;
//To plot signal*************************//
t=-5:0.01:5;
x=exp(%i*(2.*t+%pi/4));//given signal
plot(t,x);
//***************************************//
t=-50:0.01:50
x=exp(%i*(2.*t+%pi/4));
T=length(t);
//To calculate Energy
xsq=abs(x).^2;//adds squares of all the 'x' values(integrates 'x^2' terms)
v=sum(xsq);//energy
//To calculate Power
P=1/T*sum(xsq);//divide by T,to take the average rate of energy(gives power)
disp('watts',P,'Power=');
|
769b7c0d2487efff682d37cf47d743e9c9022a41
|
7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2
|
/Scilab/virtual/Self_tuning_controller/ConventionalTuning_Vikas/PIControllersetpointchange/clientwrite.sce
|
c05a1edf0f30de30cdc02ac9197812b7e072fe32
|
[] |
no_license
|
advait23/sbhs-manual
|
e2c380051117e3a36398bb5ad046781f7b379cb9
|
d65043acd98334c44a0f0dbf480473c4c4451834
|
refs/heads/master
| 2021-01-16T19:50:40.218314
| 2012-11-16T04:11:12
| 2012-11-16T04:11:12
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 13,818
|
sce
|
clientwrite.sce
|
0.10000E+00 0.10000E+01 0.00000E+00 0.25100E+03
0.10000E+01 0.10000E+01 0.18434E+02 0.10000E+03
0.20000E+01 0.20000E+01 0.22054E+02 0.10000E+03
0.30000E+01 0.30000E+01 0.22049E+02 0.10000E+03
0.40000E+01 0.40000E+01 0.22446E+02 0.10000E+03
0.50000E+01 0.50000E+01 0.22844E+02 0.10000E+03
0.60000E+01 0.60000E+01 0.23241E+02 0.10000E+03
0.70000E+01 0.70000E+01 0.23228E+02 0.10000E+03
0.80000E+01 0.80000E+01 0.23208E+02 0.10000E+03
0.90000E+01 0.90000E+01 0.23590E+02 0.10000E+03
0.10000E+02 0.10000E+02 0.22743E+02 0.10000E+03
0.11000E+02 0.11000E+02 0.23511E+02 0.10000E+03
0.12000E+02 0.12000E+02 0.23058E+02 0.10000E+03
0.13000E+02 0.13000E+02 0.22590E+02 0.10000E+03
0.14000E+02 0.14000E+02 0.22517E+02 0.10000E+03
0.15000E+02 0.15000E+02 0.21616E+02 0.10000E+03
0.16000E+02 0.16000E+02 0.21512E+02 0.10000E+03
0.17000E+02 0.17000E+02 0.21400E+02 0.10000E+03
0.18000E+02 0.18000E+02 0.20871E+02 0.10000E+03
0.19000E+02 0.19000E+02 0.19917E+02 0.10000E+03
0.20000E+02 0.20000E+02 0.18940E+02 0.10000E+03
0.21000E+02 0.21000E+02 0.17940E+02 0.10000E+03
0.22000E+02 0.22000E+02 0.17737E+02 0.10000E+03
0.23000E+02 0.23000E+02 0.17116E+02 0.10000E+03
0.24000E+02 0.24000E+02 0.16890E+02 0.10000E+03
0.25000E+02 0.25000E+02 0.15836E+02 0.10000E+03
0.26000E+02 0.26000E+02 0.15579E+02 0.10000E+03
0.27000E+02 0.27000E+02 0.15315E+02 0.10000E+03
0.28000E+02 0.28000E+02 0.15043E+02 0.10000E+03
0.29000E+02 0.29000E+02 0.14353E+02 0.10000E+03
0.30000E+02 0.30000E+02 0.14468E+02 0.10000E+03
0.31000E+02 0.31000E+02 0.13763E+02 0.10000E+03
0.32000E+02 0.32000E+02 0.13453E+02 0.10000E+03
0.33000E+02 0.33000E+02 0.13135E+02 0.10000E+03
0.34000E+02 0.34000E+02 0.12809E+02 0.10000E+03
0.35000E+02 0.35000E+02 0.12885E+02 0.10000E+03
0.36000E+02 0.36000E+02 0.12552E+02 0.10000E+03
0.37000E+02 0.37000E+02 0.12621E+02 0.10000E+03
0.38000E+02 0.38000E+02 0.12690E+02 0.10000E+03
0.39000E+02 0.39000E+02 0.11529E+02 0.10000E+03
0.40000E+02 0.40000E+02 0.11166E+02 0.10000E+03
0.41000E+02 0.41000E+02 0.11613E+02 0.10000E+03
0.42000E+02 0.42000E+02 0.11250E+02 0.10000E+03
0.43000E+02 0.43000E+02 0.10878E+02 0.10000E+03
0.44000E+02 0.44000E+02 0.10909E+02 0.10000E+03
0.45000E+02 0.45000E+02 0.11349E+02 0.10000E+03
0.46000E+02 0.46000E+02 0.11387E+02 0.10000E+03
0.47000E+02 0.47000E+02 0.11016E+02 0.10000E+03
0.48000E+02 0.48000E+02 0.11456E+02 0.10000E+03
0.49000E+02 0.49000E+02 0.11494E+02 0.10000E+03
0.50000E+02 0.50000E+02 0.11532E+02 0.10000E+03
0.51000E+02 0.51000E+02 0.11980E+02 0.10000E+03
0.52000E+02 0.52000E+02 0.12026E+02 0.10000E+03
0.53000E+02 0.53000E+02 0.12891E+02 0.10000E+03
0.54000E+02 0.54000E+02 0.12133E+02 0.10000E+03
0.55000E+02 0.55000E+02 0.12998E+02 0.10000E+03
0.56000E+02 0.56000E+02 0.13059E+02 0.10000E+03
0.57000E+02 0.57000E+02 0.13120E+02 0.10000E+03
0.58000E+02 0.58000E+02 0.13181E+02 0.10000E+03
0.59000E+02 0.59000E+02 0.13242E+02 0.10000E+03
0.60000E+02 0.60000E+02 0.13303E+02 0.10000E+03
0.61000E+02 0.61000E+02 0.13364E+02 0.10000E+03
0.62000E+02 0.62000E+02 0.13425E+02 0.10000E+03
0.63000E+02 0.63000E+02 0.12667E+02 0.10000E+03
0.64000E+02 0.64000E+02 0.12713E+02 0.10000E+03
0.65000E+02 0.65000E+02 0.12759E+02 0.10000E+03
0.66000E+02 0.66000E+02 0.12805E+02 0.10000E+03
0.67000E+02 0.67000E+02 0.12850E+02 0.10000E+03
0.68000E+02 0.68000E+02 0.13716E+02 0.10000E+03
0.69000E+02 0.69000E+02 0.13777E+02 0.10000E+03
0.70000E+02 0.70000E+02 0.13018E+02 0.10000E+03
0.71000E+02 0.71000E+02 0.13064E+02 0.10000E+03
0.72000E+02 0.72000E+02 0.13929E+02 0.10000E+03
0.73000E+02 0.73000E+02 0.13990E+02 0.10000E+03
0.74000E+02 0.74000E+02 0.13232E+02 0.10000E+03
0.75000E+02 0.75000E+02 0.13278E+02 0.10000E+03
0.76000E+02 0.76000E+02 0.13324E+02 0.10000E+03
0.77000E+02 0.77000E+02 0.13370E+02 0.10000E+03
0.78000E+02 0.78000E+02 0.13416E+02 0.10000E+03
0.79000E+02 0.79000E+02 0.13461E+02 0.10000E+03
0.80000E+02 0.80000E+02 0.13507E+02 0.10000E+03
0.81000E+02 0.81000E+02 0.13553E+02 0.10000E+03
0.82000E+02 0.82000E+02 0.13189E+02 0.10000E+03
0.83000E+02 0.83000E+02 0.13227E+02 0.10000E+03
0.84000E+02 0.84000E+02 0.13266E+02 0.10000E+03
0.85000E+02 0.85000E+02 0.13304E+02 0.10000E+03
0.86000E+02 0.86000E+02 0.12932E+02 0.10000E+03
0.87000E+02 0.87000E+02 0.12963E+02 0.10000E+03
0.88000E+02 0.88000E+02 0.12993E+02 0.10000E+03
0.89000E+02 0.89000E+02 0.13024E+02 0.10000E+03
0.90000E+02 0.90000E+02 0.13054E+02 0.10000E+03
0.91000E+02 0.91000E+02 0.13085E+02 0.10000E+03
0.92000E+02 0.92000E+02 0.13116E+02 0.10000E+03
0.93000E+02 0.93000E+02 0.13146E+02 0.10000E+03
0.94000E+02 0.94000E+02 0.12767E+02 0.10000E+03
0.95000E+02 0.95000E+02 0.12790E+02 0.10000E+03
0.96000E+02 0.96000E+02 0.12813E+02 0.10000E+03
0.97000E+02 0.97000E+02 0.13245E+02 0.10000E+03
0.98000E+02 0.98000E+02 0.13276E+02 0.10000E+03
0.99000E+02 0.99000E+02 0.13306E+02 0.10000E+03
0.10000E+03 0.10000E+03 0.13337E+02 0.10000E+03
0.10100E+03 0.10100E+03 0.13368E+02 0.10000E+03
0.10200E+03 0.10200E+03 0.13398E+02 0.10000E+03
0.10300E+03 0.10300E+03 0.13019E+02 0.10000E+03
0.10400E+03 0.10400E+03 0.13042E+02 0.10000E+03
0.10500E+03 0.10500E+03 0.13065E+02 0.10000E+03
0.10600E+03 0.10600E+03 0.13088E+02 0.10000E+03
0.10700E+03 0.10700E+03 0.13111E+02 0.10000E+03
0.10800E+03 0.10800E+03 0.13134E+02 0.10000E+03
0.10900E+03 0.10900E+03 0.13156E+02 0.10000E+03
0.11000E+03 0.11000E+03 0.13179E+02 0.10000E+03
0.11100E+03 0.11100E+03 0.13202E+02 0.10000E+03
0.11200E+03 0.11200E+03 0.13225E+02 0.10000E+03
0.11300E+03 0.11300E+03 0.12838E+02 0.10000E+03
0.11400E+03 0.11400E+03 0.13263E+02 0.10000E+03
0.11500E+03 0.11500E+03 0.12877E+02 0.10000E+03
0.11600E+03 0.11600E+03 0.12892E+02 0.10000E+03
0.11700E+03 0.11700E+03 0.12907E+02 0.10000E+03
0.11800E+03 0.11800E+03 0.12922E+02 0.10000E+03
0.11900E+03 0.11900E+03 0.12938E+02 0.10000E+03
0.12000E+03 0.12000E+03 0.12953E+02 0.10000E+03
0.12100E+03 0.12100E+03 0.12968E+02 0.10000E+03
0.12200E+03 0.12200E+03 0.12984E+02 0.10000E+03
0.12300E+03 0.12300E+03 0.12589E+02 0.10000E+03
0.12400E+03 0.12400E+03 0.12597E+02 0.10000E+03
0.12500E+03 0.12500E+03 0.13014E+02 0.10000E+03
0.12600E+03 0.12600E+03 0.13029E+02 0.10000E+03
0.12700E+03 0.12700E+03 0.13045E+02 0.10000E+03
0.12800E+03 0.12800E+03 0.12650E+02 0.10000E+03
0.12900E+03 0.12900E+03 0.13068E+02 0.10000E+03
0.13000E+03 0.13000E+03 0.13083E+02 0.10000E+03
0.13100E+03 0.13100E+03 0.13098E+02 0.10000E+03
0.13200E+03 0.13200E+03 0.13113E+02 0.10000E+03
0.13300E+03 0.13300E+03 0.13129E+02 0.10000E+03
0.13400E+03 0.13400E+03 0.13144E+02 0.10000E+03
0.13500E+03 0.13500E+03 0.13159E+02 0.10000E+03
0.13600E+03 0.13600E+03 0.13584E+02 0.10000E+03
0.13700E+03 0.13700E+03 0.13607E+02 0.10000E+03
0.13800E+03 0.13800E+03 0.13630E+02 0.10000E+03
0.13900E+03 0.13900E+03 0.13243E+02 0.10000E+03
0.14000E+03 0.14000E+03 0.13258E+02 0.10000E+03
0.14100E+03 0.14100E+03 0.13274E+02 0.10000E+03
0.14200E+03 0.14200E+03 0.13699E+02 0.10000E+03
0.14300E+03 0.14300E+03 0.13312E+02 0.10000E+03
0.14400E+03 0.14400E+03 0.12917E+02 0.10000E+03
0.14500E+03 0.14500E+03 0.13335E+02 0.10000E+03
0.14600E+03 0.14600E+03 0.12940E+02 0.10000E+03
0.14700E+03 0.14700E+03 0.12948E+02 0.10000E+03
0.14800E+03 0.14800E+03 0.12956E+02 0.10000E+03
0.14900E+03 0.14900E+03 0.12963E+02 0.10000E+03
0.15000E+03 0.15000E+03 0.12971E+02 0.10000E+03
0.15100E+03 0.15100E+03 0.12979E+02 0.10000E+03
0.15200E+03 0.15200E+03 0.12577E+02 0.10000E+03
0.15300E+03 0.15300E+03 0.12986E+02 0.10000E+03
0.15400E+03 0.15400E+03 0.12994E+02 0.10000E+03
0.15500E+03 0.15500E+03 0.13001E+02 0.10000E+03
0.15600E+03 0.15600E+03 0.13419E+02 0.10000E+03
0.15700E+03 0.15700E+03 0.13024E+02 0.10000E+03
0.15800E+03 0.15800E+03 0.13442E+02 0.10000E+03
0.15900E+03 0.15900E+03 0.13457E+02 0.10000E+03
0.16000E+03 0.16000E+03 0.13472E+02 0.10000E+03
0.16100E+03 0.16100E+03 0.13487E+02 0.10000E+03
0.16200E+03 0.16200E+03 0.13503E+02 0.10000E+03
0.16300E+03 0.16300E+03 0.13518E+02 0.10000E+03
0.16400E+03 0.16400E+03 0.13124E+02 0.10000E+03
0.16500E+03 0.16500E+03 0.13131E+02 0.10000E+03
0.16600E+03 0.16600E+03 0.13139E+02 0.10000E+03
0.16700E+03 0.16700E+03 0.13147E+02 0.10000E+03
0.16800E+03 0.16800E+03 0.13154E+02 0.10000E+03
0.16900E+03 0.16900E+03 0.12752E+02 0.10000E+03
0.17000E+03 0.17000E+03 0.13162E+02 0.10000E+03
0.17100E+03 0.17100E+03 0.13169E+02 0.10000E+03
0.17200E+03 0.17200E+03 0.12767E+02 0.10000E+03
0.17300E+03 0.17300E+03 0.12767E+02 0.10000E+03
0.17400E+03 0.17400E+03 0.12767E+02 0.10000E+03
0.17500E+03 0.17500E+03 0.12767E+02 0.10000E+03
0.17600E+03 0.17600E+03 0.13177E+02 0.10000E+03
0.17700E+03 0.17700E+03 0.12775E+02 0.10000E+03
0.17800E+03 0.17800E+03 0.13185E+02 0.10000E+03
0.17900E+03 0.17900E+03 0.13192E+02 0.10000E+03
0.18000E+03 0.18000E+03 0.12790E+02 0.10000E+03
0.18100E+03 0.18100E+03 0.12790E+02 0.10000E+03
0.18200E+03 0.18200E+03 0.12790E+02 0.10000E+03
0.18300E+03 0.18300E+03 0.13200E+02 0.10000E+03
0.18400E+03 0.18400E+03 0.12798E+02 0.10000E+03
0.18500E+03 0.18500E+03 0.12798E+02 0.10000E+03
0.18600E+03 0.18600E+03 0.12798E+02 0.10000E+03
0.18700E+03 0.18700E+03 0.11979E+02 0.10000E+03
0.18800E+03 0.18800E+03 0.12783E+02 0.10000E+03
0.18900E+03 0.18900E+03 0.12783E+02 0.10000E+03
0.19000E+03 0.19000E+03 0.11963E+02 0.10000E+03
0.19100E+03 0.19100E+03 0.12767E+02 0.10000E+03
0.19200E+03 0.19200E+03 0.12767E+02 0.10000E+03
0.19300E+03 0.19300E+03 0.12767E+02 0.10000E+03
0.19400E+03 0.19400E+03 0.12767E+02 0.10000E+03
0.19500E+03 0.19500E+03 0.13177E+02 0.10000E+03
0.19600E+03 0.19600E+03 0.13185E+02 0.10000E+03
0.19700E+03 0.19700E+03 0.13192E+02 0.10000E+03
0.19800E+03 0.19800E+03 0.12790E+02 0.10000E+03
0.19900E+03 0.19900E+03 0.12790E+02 0.10000E+03
0.20000E+03 0.20000E+03 0.13200E+02 0.10000E+03
0.20100E+03 0.20100E+03 0.33689E+02 0.10000E+03
0.20200E+03 0.20200E+03 0.34079E+02 0.10000E+03
0.20300E+03 0.20300E+03 0.34468E+02 0.10000E+03
0.20400E+03 0.20400E+03 0.34858E+02 0.10000E+03
0.20500E+03 0.20500E+03 0.35247E+02 0.10000E+03
0.20600E+03 0.20600E+03 0.34408E+02 0.10000E+03
0.20700E+03 0.20700E+03 0.34365E+02 0.10000E+03
0.20800E+03 0.20800E+03 0.33904E+02 0.10000E+03
0.20900E+03 0.20900E+03 0.33429E+02 0.10000E+03
0.21000E+03 0.21000E+03 0.32938E+02 0.10000E+03
0.21100E+03 0.21100E+03 0.32022E+02 0.10000E+03
0.21200E+03 0.21200E+03 0.31493E+02 0.10000E+03
0.21300E+03 0.21300E+03 0.30129E+02 0.10000E+03
0.21400E+03 0.21400E+03 0.29554E+02 0.10000E+03
0.21500E+03 0.21500E+03 0.28145E+02 0.10000E+03
0.21600E+03 0.21600E+03 0.27114E+02 0.10000E+03
0.21700E+03 0.21700E+03 0.25651E+02 0.10000E+03
0.21800E+03 0.21800E+03 0.24977E+02 0.10000E+03
0.21900E+03 0.21900E+03 0.24288E+02 0.10000E+03
0.22000E+03 0.22000E+03 0.22764E+02 0.10000E+03
0.22100E+03 0.22100E+03 0.22438E+02 0.10000E+03
0.22200E+03 0.22200E+03 0.20876E+02 0.10000E+03
0.22300E+03 0.22300E+03 0.20922E+02 0.10000E+03
0.22400E+03 0.22400E+03 0.20558E+02 0.10000E+03
0.22500E+03 0.22500E+03 0.20187E+02 0.10000E+03
0.22600E+03 0.22600E+03 0.19398E+02 0.10000E+03
0.22700E+03 0.22700E+03 0.18594E+02 0.10000E+03
0.22800E+03 0.22800E+03 0.18594E+02 0.10000E+03
0.22900E+03 0.22900E+03 0.18594E+02 0.10000E+03
0.23000E+03 0.23000E+03 0.18594E+02 0.10000E+03
0.23100E+03 0.23100E+03 0.17775E+02 0.10000E+03
0.23200E+03 0.23200E+03 0.17759E+02 0.10000E+03
0.23300E+03 0.23300E+03 0.17744E+02 0.10000E+03
0.23400E+03 0.23400E+03 0.18548E+02 0.10000E+03
0.23500E+03 0.23500E+03 0.18548E+02 0.10000E+03
0.23600E+03 0.23600E+03 0.18548E+02 0.10000E+03
0.23700E+03 0.23700E+03 0.18958E+02 0.10000E+03
0.23800E+03 0.23800E+03 0.18965E+02 0.10000E+03
0.23900E+03 0.23900E+03 0.19383E+02 0.10000E+03
0.24000E+03 0.24000E+03 0.19398E+02 0.10000E+03
0.24100E+03 0.24100E+03 0.19413E+02 0.10000E+03
0.24200E+03 0.24200E+03 0.19838E+02 0.10000E+03
0.24300E+03 0.24300E+03 0.19861E+02 0.10000E+03
0.24400E+03 0.24400E+03 0.20703E+02 0.10000E+03
0.24500E+03 0.24500E+03 0.21151E+02 0.10000E+03
0.24600E+03 0.24600E+03 0.21197E+02 0.10000E+03
0.24700E+03 0.24700E+03 0.20833E+02 0.10000E+03
0.24800E+03 0.24800E+03 0.20871E+02 0.10000E+03
0.24900E+03 0.24900E+03 0.20909E+02 0.10000E+03
0.25000E+03 0.25000E+03 0.20947E+02 0.10000E+03
0.25100E+03 0.25100E+03 0.20986E+02 0.10000E+03
0.25200E+03 0.25200E+03 0.21024E+02 0.10000E+03
0.25300E+03 0.25300E+03 0.21062E+02 0.10000E+03
0.25400E+03 0.25400E+03 0.21510E+02 0.10000E+03
0.25500E+03 0.25500E+03 0.21556E+02 0.10000E+03
0.25600E+03 0.25600E+03 0.21601E+02 0.10000E+03
0.25700E+03 0.25700E+03 0.22466E+02 0.10000E+03
0.25800E+03 0.25800E+03 0.22528E+02 0.10000E+03
0.25900E+03 0.25900E+03 0.22589E+02 0.10000E+03
0.26000E+03 0.26000E+03 0.22650E+02 0.10000E+03
0.26100E+03 0.26100E+03 0.21892E+02 0.10000E+03
0.26200E+03 0.26200E+03 0.21937E+02 0.10000E+03
0.26300E+03 0.26300E+03 0.21983E+02 0.10000E+03
0.26400E+03 0.26400E+03 0.22029E+02 0.10000E+03
0.26500E+03 0.26500E+03 0.22894E+02 0.10000E+03
0.26600E+03 0.26600E+03 0.22136E+02 0.10000E+03
0.26700E+03 0.26700E+03 0.21772E+02 0.10000E+03
0.26800E+03 0.26800E+03 0.21401E+02 0.10000E+03
0.26900E+03 0.26900E+03 0.21841E+02 0.10000E+03
0.27000E+03 0.27000E+03 0.21469E+02 0.10000E+03
0.27100E+03 0.27100E+03 0.21500E+02 0.10000E+03
0.27200E+03 0.27200E+03 0.21530E+02 0.10000E+03
0.27300E+03 0.27300E+03 0.21561E+02 0.10000E+03
0.27400E+03 0.27400E+03 0.21592E+02 0.10000E+03
0.27500E+03 0.27500E+03 0.21622E+02 0.10000E+03
0.27600E+03 0.27600E+03 0.21243E+02 0.10000E+03
0.27700E+03 0.27700E+03 0.21266E+02 0.10000E+03
0.27800E+03 0.27800E+03 0.21289E+02 0.10000E+03
0.27900E+03 0.27900E+03 0.21721E+02 0.10000E+03
0.28000E+03 0.28000E+03 0.21342E+02 0.10000E+03
0.28100E+03 0.28100E+03 0.20956E+02 0.10000E+03
|
464b4c28ff03c2720c2651a884ac4e602c3067da
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.3.1/macros/xdess/gr_menu.sci
|
5a477e196868c97515b55716cae9fba9164b4170
|
[
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] |
permissive
|
clg55/Scilab-Workbench
|
4ebc01d2daea5026ad07fbfc53e16d4b29179502
|
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
|
refs/heads/master
| 2023-05-31T04:06:22.931111
| 2022-09-13T14:41:51
| 2022-09-13T14:41:51
| 258,270,193
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 3,558
|
sci
|
gr_menu.sci
|
function [sd]=gr_menu(sd,flag,noframe)
getf('SCI/macros/xdess/gr_macros.sci','c');
deff('[modek]=clearmode()',['modek=xget(''alufunction'')';
'xset(''alufunction'',6);']);
deff('[]=modeback(x)','xset(''alufunction'',x);');
symbtb=['1 +';
'2 x';
'3 + circle ';
'4 full diamond';
'5 empty diamond';
'6 triangle (up)';
'7 triangle (down)';
'8 clubs';
'9 circle'];
dash=['0 continue';
'1 {2,5,2,5}';
'2 {5,2,5,2}';
'3 {5,3,2,3}';
'4 {8,3,2,3}';
'5 {11,3,2,3}';
'6 {11,3,5,3}}'];
patt=['0 black';
'1 navyblue';
'2 blue';
'3 skyblue';
'4 aquamarine';
'5 forestgreen';
'6 green';
'7 lightcyan';
'8 cyan';
'9 orange';
'10 red';
'11 magenta';
'12 violet';
'13 yellow';
'14 gold';
'15 beige';
'16 white'];
[lhs,rhs]=argn(0);
if rhs<=1,flag=0;end;
if rhs<=2,noframe=0;end;
if rhs <=0 then
cdef=[0 0 100 100];init=1
else
select type(sd)
case 1 then cdef=sd;init=1
case 15 then
if sd(1)<>'sd' then
error('l''entree n''est pas une liste de type sd'),
end
cdef=sd(2);init=0
else error('incorrect input:'+...
'[xmin,ymin,xmax,ymax] ou list(''sd'',,,)')
end
end
if noframe=1;s_t="010";else s_t="012";end
plot2d(0,0,[1],s_t,' ',cdef);
xclip('clipgrf')
//
// Trace des bouttons
tmenu=['rectangle','circle','polyline','fpolyline',...
'spline','arrow',...
'points','caption',...
'dash style','pattern','mark','redraw','pause','delete',...
'clip off','clip on','exit']
//
if init=0 then redraw(sd,s_t); else sd=list('sd',cdef); end,
//
if flag=1; xclip();return ;end
fin='no';
// boucle principale
while fin<>'ok' then
ksd=prod(size(sd))
//
x=x_choose(tmenu','Choose an option below (click)');
if x<>0 then
select tmenu(x)
case 'rectangle' then xinfo('rectangle '); sd(ksd+1)=rect();
case 'circle' then xinfo(['circle : center point,';...
' point on the circle']); sd(ksd+1)=cerc();
case 'polyline' then xinfo(['line : left-click to stop,';...
' right or middle to add a point']); sd(ksd+1)=ligne();
case 'fpolyline' then xinfo(['fline : left-click to stop,';...
' right or middle to add a point']); sd(ksd+1)=fligne();
case 'spline' then xinfo(['splin [xi increasing]:left-click to stop,';...
' right or middle to add a point ']); sd(ksd+1)=curve();
case 'arrow' then xinfo('arrow : begining point, ending point');
sd(ksd+1)=fleche();
case 'points' then xinfo(['points: left-click to stop,';...
' right or middle to add a point']);
sd(ksd+1)=points();
case 'caption' then xinfo('leg'); sd(ksd+1)=comment();
case 'dash style' then xinfo('dash'); sd(ksd+1)=dashs()
case 'pattern' then xinfo('pattern'); sd(ksd+1)=patts();
case 'mark' then xinfo('symbols'); sd(ksd+1)=symbs();
case 'redraw' then redraw(sd,s_t);
case 'pause' then pause;
case 'delete' then delete(sd);
case 'clip off' then sd(ksd+1)=grclipoff();
case 'clip on' then sd(ksd+1)=grclipon();
case 'exit' then fin='ok',
//
end, // fin select x
end,
end, // fin while
xset("default");
|
586c3cf40d7b7906f23a42b040ae8b7511832803
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/629/CH3/EX3.3/example3_3.sce
|
3e1d146f8de7096a68e82b229066f754b0d40fd3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 545
|
sce
|
example3_3.sce
|
clear
clc
//Example 3.3 PRESSURE IN TANK WITH TWO FLUIDS
//Hydrostatic equation(oil), p1/g_oil +z1=p2/g_oil +z2
p1=0; //[Pa]
z1=3; //[m]
z2=2.1; //[m]
g_oil=0.8*9810; //specific weight of oil[N/m^3]
p2=(p1+(z1-z2)*g_oil)/10^3//[kPa] (factor 1kPa/10^3Pa)
//At oil-water interface, p2_oil=p2_water
//Hydrostatic equation(water), p2/g_water +z2=p3/g_water +z3
z3=0; //[m]
g_water=9810; //specific weight of water[N/m^3]
p3=p2+(z2-z3)*g_water/10^3 //[kPa]
printf("\nThe gage pressure at the bottom of the tank = %.1f kPa gage.\n",p3)
|
4824d606eacc6dcdcbd2fab54bd72d98f4e507b1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2183/CH5/EX5.6/Ex_5_6.sce
|
c3f24452f8c22bfe52660cac26084865ec4ddd37
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 457
|
sce
|
Ex_5_6.sce
|
// Example 5.6;//ratio of threshold current at differnt temperatures
clc;
close;
clear;
To1=160;//Absolute temperature in Kelvin
To=55;//in Kelvin
T1=293;//T=20 in Kelvin
T2=353;//T=80 in Kelvin
J1=exp((T2-T1)/To1);//threshold current ration for AlGaAs laser
J2=exp((T2-T1)/To);//threshold current RATIO FOR InGaAs laser
disp(J1,"ratio of the threshold current densities for AlGaAs laser")
disp(J2,"ratio of current densities for InGaAs laser")
|
a2ebb126065eb52306ccf5163100809393260957
|
61da6be21995bc4b23f268b03fc13d0a33d818f3
|
/test/tag-comments.tst
|
2c898d4e18659a187eb1a3aadd5067bd4f87e0fc
|
[
"BSD-3-Clause",
"BSD-2-Clause"
] |
permissive
|
warmchang/reposurgeon
|
657fe5f63fdd0db560b46ccff11478c73c69b150
|
43e553d9ff0ad4a9c39f4c94b58856f2e5c99297
|
refs/heads/master
| 2020-12-08T19:41:16.920673
| 2020-01-10T14:58:55
| 2020-01-10T14:58:55
| 233,076,382
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 79
|
tst
|
tag-comments.tst
|
## Test tag comment handling
set echo
read <tag-comments.fi
tags
names
write -
|
51a03d2c24fdc2c18068772e9d6c90974a64531d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/26/CH3/EX3.3.1/3_3_1.sce
|
70180971b83ed66966fa26de026c336253422345
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 401
|
sce
|
3_3_1.sce
|
disp('the co-efficient matrix is:')
a=[5 7;2 4]
disp(a,'A=')
disp('the RHS is:')
b=[3;1]
disp(b)
disp('applying cramers rule')
disp('replacing first column of matrix A by b')
A1=[3 7;1 4]
disp(A1,'A1=')
disp('replacing second column of matrix A by b')
A2=[5 3;2 1]
disp(A2,'A2=')
disp('x1=det(A1)/det(A)')
disp((det(A1)/det(a)),'=')
disp('x2=det(A2)/det(A)')
disp((det(A2)/det(a)),'=')
|
40399062da854d4198e93f32a4bb8113c57dd30e
|
0a4cafa69c07e332ff5b08ee3ae6ba748ac8f400
|
/FullInp.tst
|
9a7dc3675cf3c3fb63c9a6827a0b507ab4b9c581
|
[] |
no_license
|
BalticPinguin/FreeWilly
|
cc64801dd712b1c895c8246a99ab614e51e3c907
|
3add8a65b1ff47376690dde760242e10d0db4411
|
refs/heads/master
| 2020-04-12T09:03:35.329817
| 2017-01-16T21:37:45
| 2017-01-16T21:37:45
| 47,401,566
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,775
|
tst
|
FullInp.tst
|
# This is a sample input-file for FreeWilly
formulation=power #original,squared, symmetric, root, power
power=0.99 # power of D in the basis functions
nev = 15 # any integer
pot = grid # which potential: grid, screen, none, coul
Energy =0.05 # photon energy (1eV = 0.0367493 )
infinite =true # whether infinite elements should be allowed
print_quadrature = false # whether quadrature points should be printed or not
pictorious = false # if DO and ESP should be computed explicitly
spherical_analysis= -1 # if a projection onto spherical waves should be performed
# number gives maximum l to be used
cubes=false # whether or not to make cube files
exodus=true # whether to write exodus-files or not
grid=false # whether or not to make grid files
guessed l=1 # set l and m for the Spherical Harmonic used as initial guess.
guessed m=1 # can be any integers
cap=false # switches complex absorbing boundaries on and off.
gamma=2 # parameter to scale the cap.
offset=1 # distance from the edge to the starting of CAP
Qorder=2
radorder=18
angular=fibonacci # fibonacci, spiral, archimedes, lebedev, womEV, womMD, fliME, womMN, Sdesign #, geodesic4, geodesic6
order = 1
radius= 20.
scheme= son # son, tm, const, quadr, const_tm, sqrt_tm, tm_300, const_son
p=1.0 # if scheme==tm, this option is evaluated.
maxVol= 800.
bending= 20.
circles= 5
r_0= 0.5 # number of neighbours considered in the interpolation. Default: 12
maxiter=700 #default-value.
transform=sinv # cayley, sinv ; else: spectral shift is used.
solver=lapack # lapack, arnoldi,lanczos ; else: Krylov-Schur is used.
refine = false # flag: mesh refinement allowed or not?
mesh_file=Hplus.grid
mol_file=Hplus.mo
|
a597a2a3e335bd6517599be562676e6d7a184fe5
|
27fecbbeb6c49dcf03b9bddf1b867c31e13a3825
|
/Simulações/retrato.sce
|
6f84e1d3bad2fb1ca5bac238ecba1a788c232836
|
[] |
no_license
|
LucasHattoriCosta/Poli
|
42c9fc2d34c31e01336265fbdac3e4921d56e096
|
b1ac609c3675539b4e921909c35ea196ffc44df3
|
refs/heads/master
| 2023-03-15T12:22:03.745943
| 2020-06-29T17:32:48
| 2020-06-29T17:32:48
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,888
|
sce
|
retrato.sce
|
//Lista de exercício 3 - 2º Tarefa
//Dados
pi = %pi;
r_e = 0.001; // raio da esfera em metros
r = 1; // raio da pista circular
rho = 7850; //densidade do aço em kg/m^3
g = 9.8; //m/s^2
m = (4/3)*pi*(r_e^3)*7850 // massa em kg
//Condições 1
theta_1 = [0;0];
//Condições 2
theta_2 = [-pi/180;0];
//Condições 3
theta_3 = [pi/4;1.8];
//Condições 4
theta_4 = [5*pi/6;0];
//Condições 5
theta_5 = [pi/2;2];
//Condições 6
theta_6 = [pi*2/3;0];
//Condições 7
theta_7 = [0;3];
//Condições 8
theta_8 = [pi/10;0.5];
//Condições 9
theta_9 = [pi*14/15;-2];
//Condições 10
theta_10 = [pi/3;6];
//Condições 10
theta_11 = [pi/3;6];
//Condições 10
theta_12 = [pi/3;6];
//Condições 10
theta_13 = [pi/3;6];
//Condições 10
theta_14 = [pi/45;1.9];
//Condições 10
theta_15 = [pi/2;0.35];
//Vetor tempo
t0 = 0;
tf = 10; //Vamos integrar pelo tempo de 0 a 10 segundos
dt = 0.01; //Define o passo, quanto menor mais preciso
t = t0:dt:tf;
//Espaço de estados
function dtheta = f(t,v)
//s é o vetor de estado, ou seja, s = [s, ds/dt]
dtheta1 = v(2);
dtheta2 = -g*sin(v(1))/r;
dtheta = [dtheta1; dtheta2];
endfunction
theta1 = ode(theta_1,0,t,f);
theta2 = ode(theta_2,0,t,f);
theta3 = ode(theta_3,0,t,f);
theta4 = ode(theta_4,0,t,f);
theta5 = ode(theta_5,0,t,f);
theta6 = ode(theta_6,0,t,f);
theta7 = ode(theta_7,0,t,f);
theta8 = ode(theta_8,0,t,f);
theta9 = ode(theta_9,0,t,f);
theta10 = ode(theta_10,0,t,f);
//Plotar gráficos
clf()
scf(0)
xtitle('Retrato do espaço de fases');
plot(theta1(1,:), theta1(2,:), 'k');
plot(theta2(1,:), theta2(2,:), 'k');
plot(theta3(1,:), theta3(2,:), 'k');
plot(theta4(1,:), theta4(2,:), 'k');
plot(theta5(1,:), theta5(2,:), 'k');
plot(theta6(1,:), theta6(2,:), 'k');
plot(theta7(1,:), theta7(2,:), 'k');
plot(theta8(1,:), theta8(2,:), 'k');
plot(theta9(1,:), theta9(2,:), 'k');
plot(theta10(1,:), theta10(2,:), 'k');
|
1ea1c68f04153eca7f6855751981d44358448d6e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1022/CH14/EX14.4/14_4.sce
|
a6718775babeb9bf5220a40babe4830859568f61
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 354
|
sce
|
14_4.sce
|
clc
//initialisation of variables
T= 100 //F
T1= 2000 //F
W= 3.2*10^4 //Btu/hr ft^2
W1= 140 //Btu/hr ft^2
s= 0.17*10^-8 //Btu/hr ft^2 R^4
//CALCULATIONS
alpha= W/(s*(T1+460)^4)
b= W1/(s*(T+460)^4)
//RESULTS
printf ('Average absorptivity of the body at 100 F = %.2f ',alpha)
printf (' \n Average absorptivity of the body at 2000 F= %.2f ',b)
|
76037a8c319574fee548de863948e9245082763c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/911/CH2/EX2.2/ex_2_2.sce
|
2016599fe8e30a22a461512517074502c81f702f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 299
|
sce
|
ex_2_2.sce
|
//example 2.2//
clc
//clears the screen//
clear
//clears all existing variables//
a=14276;
b=18490;
c=a+b;
if c<32767 then
disp('Yes 16 bit arithmetic operation can be used to add given numbers')
else
disp('NO 16 bit arithmetic operation can be used to add given numbers')
end
|
446cf6d18ccaca306df54d0e91892851e229fc89
|
089894a36ef33cb3d0f697541716c9b6cd8dcc43
|
/NLP_Project/test/blog/bow/bow.16_1.tst
|
8566b09a2dd22590e9f27ea05a1b7c8b8a23f934
|
[] |
no_license
|
mandar15/NLP_Project
|
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
|
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
|
refs/heads/master
| 2020-05-20T13:36:05.842840
| 2013-07-31T06:53:59
| 2013-07-31T06:53:59
| 6,534,406
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 5,018
|
tst
|
bow.16_1.tst
|
16 6:1.0 14:0.02631578947368421 17:0.014925373134328358 25:0.5 237:1.0 581:0.25 1142:1.0
16 6:1.0 10:0.2 13:0.5 14:0.02631578947368421 17:0.014925373134328358 45:0.5 60:0.25 74:0.14285714285714285 84:0.16666666666666666 121:0.3333333333333333 159:0.25 188:0.5 208:1.0 375:1.0 408:1.0 409:1.0 837:1.0 1064:1.0 1089:1.0 1090:1.0 1560:1.0 1813:1.0
16 6:1.0 14:0.07894736842105263 17:0.029850746268656716 25:0.5 30:0.2 45:0.5 69:0.3333333333333333 84:0.16666666666666666 208:1.0 236:0.5 349:0.3333333333333333 375:1.0 408:1.0 581:0.25 837:1.0 880:1.0 1063:1.0 1469:1.0
16 14:0.05263157894736842 17:0.014925373134328358 21:1.0 25:0.5 69:0.3333333333333333 74:0.14285714285714285 237:2.0 300:1.0 344:1.0 553:1.0 682:1.0 1195:1.0
16 14:0.02631578947368421 17:0.014925373134328358 25:1.0 45:0.5 146:1.0 160:0.5 173:1.0 202:0.125 203:1.0 207:1.0 255:1.0 394:1.0 725:1.0 1335:1.0 1789:1.0
16 4:0.15384615384615385 14:0.02631578947368421 17:0.029850746268656716 19:0.1 25:0.5 30:0.2 39:1.0 54:0.5 69:0.6666666666666666 160:0.5 202:0.125 203:3.0 207:1.0 218:1.0 255:1.0 408:1.0 1059:1.0 1162:1.0 1600:1.0 1624:1.0 1789:1.0
16 4:0.15384615384615385 14:0.05263157894736842 25:0.5 54:0.5 74:0.14285714285714285 84:0.16666666666666666 121:0.3333333333333333 160:0.5 193:0.5 203:2.0 207:1.0 255:1.0 262:1.0 277:1.0 388:1.0 1143:1.0 1560:1.0 1574:1.0
16 4:0.07692307692307693 6:1.0 17:0.029850746268656716 69:0.3333333333333333 173:1.0 207:1.0 237:1.0 278:0.5 369:1.0 410:1.0 480:0.09090909090909091 876:1.0 972:1.0 1542:1.0
16 4:0.15384615384615385 25:0.5 140:0.5 203:2.0 242:1.0 256:1.0 386:0.3333333333333333 1008:1.0 1232:1.0
16 25:1.0 42:0.3333333333333333 200:1.0 207:1.0 236:0.5 285:1.0 408:1.0 545:1.0 546:1.0 1469:1.0 1789:1.0
16 14:0.10526315789473684 25:1.0 30:0.4 54:1.0 84:0.16666666666666666 200:1.0 203:1.0 207:1.0 255:1.0 369:1.0 480:0.09090909090909091 622:1.0 766:1.0 826:1.0 842:1.0 968:1.0 995:1.0
16 17:0.014925373134328358 25:0.5 30:0.2 279:1.0 287:1.0 369:1.0 404:1.0 968:1.0 995:1.0 1113:1.0
16 17:0.014925373134328358 25:1.0 54:0.5 69:0.3333333333333333 149:1.0 160:0.5 193:0.5 207:1.0 221:1.0 278:0.5 316:1.0 369:1.0 480:0.09090909090909091 725:1.0 876:1.0 995:1.0 1328:1.0 1492:1.0 1789:1.0
16 10:0.2 17:0.014925373134328358 25:0.5 84:0.16666666666666666 249:0.16666666666666666 968:1.0 971:0.16666666666666666 1289:1.0 1667:1.0 1813:1.0
16 84:0.16666666666666666 279:1.0 377:1.0 480:0.09090909090909091
16 4:0.07692307692307693 69:0.3333333333333333 1251:1.0
16 4:0.07692307692307693 106:1.0 480:0.09090909090909091 951:1.0
16 13:0.5 14:0.02631578947368421 17:0.04477611940298507 20:1.0 25:0.5 30:0.2 49:0.14285714285714285 66:0.6666666666666666 140:0.5 149:1.0 208:1.0 473:1.0 546:1.0 876:1.0 979:1.0 1422:1.0
16 10:0.4 17:0.029850746268656716 25:0.5 257:1.0 380:1.0 466:1.0 556:1.0 749:1.0 964:1.0 1607:1.0
16 4:0.07692307692307693 6:1.0 14:0.05263157894736842 17:0.029850746268656716 25:0.5 30:0.4 96:1.0 181:0.5 237:2.0 262:1.0 279:1.0 518:1.0 727:1.0 1335:1.0
16 17:0.014925373134328358 30:0.2 262:3.0 287:1.0 1195:1.0
16 4:0.07692307692307693 6:2.0 13:0.5 14:0.13157894736842105 17:0.014925373134328358 193:0.5 465:1.0 480:0.09090909090909091 929:2.0 1186:1.0 1195:1.0 1310:1.0 1497:1.0
16 4:0.07692307692307693 10:0.2 13:0.5 14:0.10526315789473684 17:0.04477611940298507 25:0.5 30:0.2 54:0.5 69:0.6666666666666666 193:0.5 207:1.0 278:0.5 328:1.0 394:1.0 465:1.0 556:1.0 929:1.0 1320:1.0 1366:1.0 1376:1.0 1399:1.0 1485:1.0 1617:1.0
16 4:0.15384615384615385 6:2.0 14:0.02631578947368421 17:0.029850746268656716 42:0.16666666666666666 45:0.5 74:0.14285714285714285 183:0.2 467:1.0 625:1.0 837:1.0 1007:1.0 1666:1.0 1719:1.0 1843:1.0
16 4:0.07692307692307693 14:0.05263157894736842 17:0.04477611940298507 30:0.2 54:0.5 115:1.0 149:1.0 218:1.0 277:2.0 705:1.0 716:1.0 1157:1.0 1531:1.0 1693:1.0 1844:1.0
16 4:0.23076923076923078 10:0.2 30:0.2 60:0.25 107:1.0 355:1.0 956:1.0
16 17:0.014925373134328358 25:0.5 184:0.5 375:1.0 490:0.5 837:1.0 1630:1.0
16 17:0.014925373134328358 21:1.0 143:0.5 279:1.0 731:1.0 960:1.0
16 6:1.0 30:0.2 54:0.5 74:0.2857142857142857 140:0.5 207:1.0 262:1.0 480:0.18181818181818182 1699:1.0 1700:1.0 1739:1.0
16 14:0.05263157894736842 17:0.014925373134328358 64:1.0 110:1.0 112:1.0 199:0.3333333333333333 237:1.0 298:1.0 852:1.0 1259:1.0 1270:1.0 1620:1.0
16 14:0.02631578947368421 25:0.5 30:0.2 69:0.3333333333333333 199:0.3333333333333333 200:1.0 242:1.0 433:1.0 1642:1.0
16 19:0.05 25:0.5 43:0.5 194:0.5 408:1.0 794:1.0
16 1:1.0 4:0.07692307692307693 6:3.0 14:0.05263157894736842 54:0.5 64:1.0 69:0.3333333333333333 303:0.5 349:0.3333333333333333 490:0.5 925:1.0 1195:1.0 1196:1.0 1374:1.0 1640:1.0
16 17:0.029850746268656716 69:0.3333333333333333 199:0.3333333333333333 354:1.0 876:1.0 952:1.0 1611:1.0
16 4:0.07692307692307693 6:1.0 14:0.02631578947368421 149:1.0 262:2.0 328:1.0 496:2.0 518:1.0 542:1.0 956:1.0
16 199:0.3333333333333333 941:1.0
16 386:0.3333333333333333 961:1.0
16 480:0.09090909090909091
16 6:1.0 17:0.014925373134328358 67:1.0 476:1.0 1034:1.0 1476:1.0
|
7d86147d0d0db0b53e565324abcafb6c3f4b1d95
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2699/CH13/EX13.11/Ex13_11.sce
|
b2abc9d3fc47dd469947bf911da79b45d8562488
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 133
|
sce
|
Ex13_11.sce
|
//EX13_11 PG-13.8
clc
clear
printf("Binary equivalent of 3FD hexadecimal is :")
a=['3FD']
x=hex2dec(a)
y=dec2bin(x)
printf("00%s",y)
|
66ddc19e1b9db06c2e951b7a14fc83faf670c489
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/534/CH14/EX14.6/14_6_Bacteria_Biofilm.sce
|
92b514f05b24e68587ee9fe7f692f9c02d50e0d8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 717
|
sce
|
14_6_Bacteria_Biofilm.sce
|
clear;
clc;
printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 14.6 Page 909 \n')// Example 14.6
// Maximum Thickness of a bacteria laden biofilm, that may be siccessfully treated
Dab = 2*10^-12 ;//[m^2/s] Diffusion coefficient
Ca0 = 4*10^-3 ;//[kmol/m^3] Fixed Concentration of medication
Na = -.2*10^-3 ;//[kmol/m^3.s] Minimum consumption rate of antibiotic
k1 = .1 ;//[s^-1] Reaction Coefficient
//For firsst order kinetic reaction Equation 14.74
m = (k1/Dab)^.5;
L = m^-1*acosh(-k1*Ca0/Na);
printf('\n Maximum Thickness of a bacteria laden biofilm, that may be siccessfully treated is %.1f pico-m',L*10^6);
//END
|
35f24f72e864c2ce09ae1911ae9d02d1425b9d62
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/29/CH12/EX12.15/exa12_15.sce
|
6af9c6d798afafe1a5d297a21db082d0f8d8564b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 628
|
sce
|
exa12_15.sce
|
//caption:stability_using_Routh-hurwitz_criterion
//example 12.15
//page 529
s=%s;
syms K
G=sym('K/(s*(s^2+s+1)*(s+5)');
H=1;
CH=(s*(s^2+s+1)*(s+5)+K)
disp('=0',CH,"characterstics_eq,CH=")
c0=coeffs(CH,'s',0);
c1=coeffs(CH,'s',1);
c2=coeffs(CH,'s',2);
c3=coeffs(CH,'s',3);
c4=coeffs(CH,'s',4);
b=[c0 c1 c2 c3 c4 ]
routh=[b([5,3,1]);b([4,2]),0]
routh=[routh;-det(routh(1:2,1:2)/routh(2,1)),K,0]
t=routh(2:3,1:2)
routh=[routh;-det(t)/t(2,1),0,0]
routh=[routh;K,0,0]
disp(routh,"routh=")
disp("for given system to be stable:");
disp("((5.1*5-6*K)/5.1)>0 and K>0");
disp("which gives:");
disp("0<K<4.25");
|
a57180190f8d0e4d12802f2a066a45e019e501c2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/38/CH7/EX7.1/1.sce
|
e6acfaa631e9053fdac871ba11c061da1fc2229c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 371
|
sce
|
1.sce
|
// Caption: Finding stator current and efficiency
clear;
close;
clc;
V_app=220/sqrt(3);//applied voltage to neutral
I_s=127/6.75;//stator current
pf=cos(.565);//in radians
speed=120/6;// synchronous speed in r/s
S_r=(1-.02)*speed*60;//rotor spped in r/min
P_g=3*18.8^2*5.41;
P=.98*5740;//internal mechanical power
eff=1-830/6060;
disp(eff,'efficiency=')
|
ed274f842eee12927a11e68b7d2960f48874ff25
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3204/CH17/EX17.5/Ex17_5.sce
|
7aa4c8f73094f0b6020ad845af21c7f9aee32569
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,339
|
sce
|
Ex17_5.sce
|
// Initilization of variables
M=250 // kg // mass of the boat
M_1=50 // kg // mass of the man
M_2=75 // kg // mass of the man
v=4 // m/s // relative velocity of man w.r.t boat
// Calculations
// (a)
// Let the increase in the velocity or the final velocity of the boat when TWO MEN DIVE SIMULTANEOUSLY is given by eq'n,
deltaV_1=((M_1+M_2)*v)/(M+(M_1+M_2)) // m/s
// (b) // The increase in the velocity or the final velocity of the boat when man of 75 kg dives 1st followed by man of 50 kg
// Man of 75 kg dives first, So let the final velocity is given as
deltaV_75=(M_2*v)/((M+M_1)+M_2) // m/s
// Now let the man of 50 kg jumps next, Here
deltaV_50=(M_1*v)/(M+M_1) // m/s
// Let final velocity of boat is,
deltaV_2=0+deltaV_75+deltaV_50 // m/s
// (c)
// The man of 50 kg jumps first,
delV_50=(M_1*v)/((M+M_2)+(M_1)) // m/s
// the man of 75 kg jumps next,
delV_75=(M_2*v)/(M+M_2) // m/s
// Final velocity of boat is,
deltaV_3=0+delV_50+delV_75 // m/s
// Results
clc
printf('(a) The Final velocity of boat when two men dive simultaneously is %f m/s \n',deltaV_1)
printf('(b) The Final velocity of boat when the man of 75 kg dives first and 50 kg dives second is %f m/s \n',deltaV_2)
printf('(3) The Final velocity of boat when the man of 50kg dives first followed by the man of 75 kg is %f m/s \n',deltaV_3)
|
a3345c29ef9a137028a54af86bef127ca59534ec
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set7/s__elelectronics_instrumentation_and_measurements_U._S._Shah_2195.zip/_elelectronics_instrumentation_and_measurements_U._S._Shah_2195/CH12/EX12.5.1/ex_12_5_1.sce
|
0dbd4f2cf1032b6e9d512d119b733244b9c6c718
|
[] |
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
| 207
|
sce
|
ex_12_5_1.sce
|
errcatch(-1,"stop");mode(2);//Example 12.5.1 // chart speed
;
;
//given data :
f=50;// frequency in Hz
period=1/f;
t=5;//in mm/cycle
chart_speed=t/period;;
disp(chart_speed,"chart speed(mm/s) = ")
exit();
|
68de372f5a04e3d3da9164605660d0fe15b26035
|
b0aff14da16e18ea29381d0bd02eede1aafc8df1
|
/mtlbSci/macros/exec.sci
|
e16d04843b4aba46db338a6d27e53ca708859df6
|
[] |
no_license
|
josuemoraisgh/mtlbSci
|
5d762671876bced45960a774f7192b41124a13ed
|
5c813ed940cccf774ccd52c9a69f88ba39f22deb
|
refs/heads/main
| 2023-07-15T23:47:11.843101
| 2021-08-26T17:52:57
| 2021-08-26T17:52:57
| 385,216,432
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 995
|
sci
|
exec.sci
|
function varargout = exec(varargin)
if argn(2)==0 then
nomearq = uigetfile("*.*",pwd());
assingnin
macrovar(nomearq);
execold(mtlbSci_translate(nomearq),-1);
else
macrovar(varargin(1));
select argn(2)
case 1 then
if isdir(varargin(1)) then
execold(varargin(1),2);
else
execold(mtlbSci_translate(varargin(1)),-1);
end
case 2 then
if isdir(varargin(1)) then
execold(varargin(1),varargin(2));
else
execold(mtlbSci_translate(varargin(1)),2);
end
case 3 then
if isdir(varargin(1)) then
varargout(1)=execold(varargin(1),varargin(2),varargin(3));
else
varargout(1)=execold(mtlbSci_translate(varargin(1)),varargin(2),varargin(3));
end
else
disp('Parameters exceeded!!');
end
end
endfunction
|
98950a95c395acb769789a93d35570e956e190bd
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/23/CH7/EX7.9/Example_7_9.sce
|
a98b9d194ee04dc7580a23ea50a264177026e489
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,648
|
sce
|
Example_7_9.sce
|
clear;
clc;
//To find Approx Value
function[A]=approx(V,n)
A=round(V*10^n)/10^n;//V-Value n-To what place
funcprot(0)
endfunction
function[Q]=MCPH(T0,T,A,B,C,D)
t=T/T0;
Q=(A+((B/2)*T0*(t+1))+((C/3)*T0*T0*((t^2)+t+1))+(D/(t*T0*T0)))
funcprot(0);
endfunction
function[Q]=MCPS(T0,T,A,B,C,D)
t=T/T0;
Q=(A)+(((B*T0)+(((C*T0*T0)+(D/(t*t*T0*T0)))*(t+1)/2))*((t-1)/log(t)))
funcprot(0);
endfunction
//Example 7.9
//Caption : Program to Find Work Reqiured and Discharge Temperature of Methane
//Given Values
R=8.314;
T1=293.15;//[K]
P1=140;//[KPa]
P2=560;//[KPa]
eta=0.75;//[Efficiency]
A=1.702;
B=9.081*10^-3;
C=-2.164*10^-6;
D=0;
i=-1;
a=round(T1);//Initial
while (i==-1)
b=MCPS(T1,a,A,B,C,D);
b=b^-1;
c=T1*((P2/P1)^b);
flag=c-a;
if(flag<=0.0001) then
T2i=a;
i=1;
else
a=a+0.01;
i=-1;
end
end
Cps=R*MCPS(T1,T2i,A,B,C,D);
Cph=approx(R*MCPH(T1,T2i,A,B,C,D),3);
//from Eqn(7.19)
Ws=approx(Cph*(T2i-T1),0)//[J/mol]
Ws=approx(Ws/eta,0)//Actual work
del_H=Ws;
//From eqn(7.21) Actual discharge Temperature
//T2=T1+(del_H/Cph)
i=-1;
a=round(T2i);//Initial
chk=1;
while (i==-1)
b=R*MCPH(T2i,a,A,B,C,D);
c=del_H/(a-T1);
flag=c-b;
if(flag<=0.001) then
T2=a;
i=1;
else
a=a+0.001;
i=-1;
end
end
Cph_T2=approx(R*MCPH(T2i,T2,A,B,C,D),2);
disp('K',T2,'Temperature')
disp('J/mol/K',Cph_T2,'Enthalpy')
disp('J/mol',Ws,'Actual Work')
disp('Note: The answer in the Book varies with that of this code because the Calculation in the Book does not leads to the answer given')
//End
|
cf37c95d7717b19aaffee43097435e89e3b34eff
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.0/macros/elem/floor.sci
|
21f1458c5cd13235719961a6091c2b55869d75a4
|
[
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] |
permissive
|
clg55/Scilab-Workbench
|
4ebc01d2daea5026ad07fbfc53e16d4b29179502
|
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
|
refs/heads/master
| 2023-05-31T04:06:22.931111
| 2022-09-13T14:41:51
| 2022-09-13T14:41:51
| 258,270,193
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 58
|
sci
|
floor.sci
|
function [t]=floor(x)
t=-round(-x+(0.5-%eps)*ones(x))
|
57a614d2a3f49a6d8553f3d184c0d2212e37eb8b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/122/CH10/EX10.2/exa10_2.sce
|
7ba3322867ae753d21135514124086cf33d79142
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 466
|
sce
|
exa10_2.sce
|
// Example 10-2
// Gain matrix using ppol and Ackermanns formula
clear; clc;
xdel(winsid()); //close all windows
// please edit the path
// cd "<path to dependencies>";
// exec("ackermann.sci");
A = [0 1 0; 0 0 1;-1 -5 -6];
B = [0; 0; 1];
P = [-2 + %i*4 , -2 - %i*4, -10];
K = ackermann(A,B,P);disp(K,'using ackermanns formula K = ');
K = ppol(A,B,P); disp(K,'using ppol function K = ')
// ackermann's formula is computationally tedious
// and hence avoided
|
abbd37dbfdbfb2a0ed2f1f8d274ea70b92de5e00
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/611/CH4/EX4.4/Chap4_Ex4_R1.sce
|
da2129791e8c55761fa3d9d43c40f64d046bbed7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 2,563
|
sce
|
Chap4_Ex4_R1.sce
|
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-4,Example 4,Page 97
//Title:Energy transferred and final state masses of liquid and vapour
//================================================================================================================
clear
clc
//INPUT
V=0.1;//volume of tank in m^3
T1=200;//initial temperature of saturated steam inside the tank in degree celsius
T2=150;//temperature in degree celsius that the tank attains after some time due to poor insulation
P1=15.549;//pressure in bar obtained from steam tables corresponding to T1
vg1=0.1272;//specific volume of saturated vapour in m^3/kg obtained from steam tables corresponding to T1
hg1=2790.9;//specific enthalpy of saturated vapour in kJ/kg obtained from steam tables corresponding to T1
P2=4.76;//pressure in bar obtained from steam tables corresponding to T2
vf=0.0010908;//specific volume of saturated liquid in m^3/kg obtained from steam tables corresponding to T2
vg2=0.3924;//specific volume of saturated vapour in m^3/kg obtained from steam tables corresponding to T2
hf=632.15;//specific enthalpy of saturated liquid in kJ/kg obtained from steam tables corresponding to T1
hg2=2745.4;//specific enthalpy of saturated vapour in kJ/kg obtained from steam tables corresponding to T1
//CALCULATION
ug1=((hg1*10^3)-(P1*10^5*vg1))*10^-3;//calculation of internal energy of vapour corresponding to T1 in kJ/kg
uf=((hf*10^3)-(P2*10^5*vf))*10^-3;//calculation of internal energy of liquid corresponding to T2 in kJ/kg
ug2=((hg2*10^3)-(P2*10^5*vg2))*10^-3;//calculation of internal energy of vapour corresponding to T2 in kJ/kg
v2=vg1;//since constant volume process
X2=(v2-vf)/(vg2-vf);//calculation of the final quality of steam (no unit)
u2=(X2*ug2)+((1-X2)*uf);//calculation of the internal energy at the final state in kJ/kg
m=V/vg1;//calculation of the mass of steam in kg
Q=m*(u2-ug1);//calculation of energy transferred as heat in kJ, using the first law of thermodynamics
mf=m*(1-X2);//calculation of mass of liquid in the tank in the final state in kg
mg=m*X2;//calculation of mass of vapour in the tank in the final state in kg
//OUTPUT
mprintf('\n The energy transferred as heat= %f kJ\n',Q);
mprintf('\n The mass of liquid in the tank in the final state= %0.3f kg\n',mf);
mprintf('\n The mass of vapour in the tank in the final state= %0.3f kg\n',mg);
//===============================================END OF PROGRAM===================================================
|
beb16895374bf6896393b9b533bdf9fa4d63708d
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set6/s_Electric_Machines_-_I_M._Verma_And_V._Ahuja_695.zip/Electric_Machines_-_I_M._Verma_And_V._Ahuja_695/CH4/EX4.5/Ex4_5.sce
|
421b99a2d43ef71ccd687513ac5fdfc0f00b0e10
|
[] |
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
| 420
|
sce
|
Ex4_5.sce
|
errcatch(-1,"stop");mode(2);//Caption:Find the Efficiency
//Exa:4.5
;
;
P=1200*1000;//in watts
R_1=2;//in ohms
R_2=0.03;//in ohms
P_iron=20000;//in watts
V_1p=6600;//in volts
V_2p=1100/sqrt(3);//in volts
a=V_1p/V_2p;
R_o2=R_2+(R_1/a^2);//in ohms
I_2p=P/(sqrt(3)*1100);//in amperes
P_cu=3*R_o2*I_2p^2;
P_t=P_iron+P_cu;
P_o=0.9*P;//in watts
Eff=P_o/(P_o+P_t);
disp(Eff*100,'Efficiency (in %)=')
exit();
|
f6ce4174c6bb1a2c0456fa85cdb150683e5c33b2
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set5/s_Digital_Signal_Processing_R._Babu_52.zip/Digital_Signal_Processing_R._Babu_52/CH4/EX4.20/Example4_20.sce
|
7a83e79c832d2b684f88993e58e3c60aa35f1bc3
|
[] |
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
| 261
|
sce
|
Example4_20.sce
|
errcatch(-1,"stop");mode(2);//Example 4.20
//Program to Compute the 8-point DFT of given Sequence
//x[n]=[2,2,2,2,1,1,1,1] using DIT, radix-2,FFT Algorithm.
;
;
;
x = [2,2,2,2,1,1,1,1];
//FFT Computation
X = fft (x , -1);
disp(X,'X(z) = ');
exit();
|
95273a3898d4a1367a41c38056457e23dbea331b
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.5/macros/m2sci/%g2sci.sci
|
463066ab7bfba738822071866d1cf68cbf9ec886
|
[
"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
| 343
|
sci
|
%g2sci.sci
|
function [stk,txt,top]=%g2sci()
//
//!
// Copyright INRIA
txt=[]
s2=stk(top);s1=stk(top-1);
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
if s1(3)=='1'&s1(4)=='1' then
stk=list(e1+'|'+e2,'2',s2(3),s2(4),s1(5))
elseif s2(3)=='1'&s2(4)=='1' then
stk=list(e1+'|'+e2,'2',s1(3),s1(4),s1(5))
else
stk=list(e1+'|'+e2,'2',s1(3),s1(4),s1(5))
end
top=top-1
|
00739c60cc97baa3592763bc51a54fe0b5c285e0
|
4a1effb7ec08302914dbd9c5e560c61936c1bb99
|
/Project 2/Experiments/GAssist-Interval-C/results/GAssist-Intervalar-C.flare-10-1tra/result9s0.tst
|
3b3785f6a9f59649aacb630dea9a384ee98052b1
|
[] |
no_license
|
nickgreenquist/Intro_To_Intelligent_Systems
|
964cad20de7099b8e5808ddee199e3e3343cf7d5
|
7ad43577b3cbbc0b620740205a14c406d96a2517
|
refs/heads/master
| 2021-01-20T13:23:23.931062
| 2017-05-04T20:08:05
| 2017-05-04T20:08:05
| 90,484,366
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 949
|
tst
|
result9s0.tst
|
@relation flare
@attribute LargestSpotSize{A,R,S,X,K,H}
@attribute SpotDistribution{X,O,I,C}
@attribute Activity{1,2}
@attribute Evolution{1,2,3}
@attribute Prev24Hour{1,2,3}
@attribute HistComplex{1,2}
@attribute BecomeHist{1,2}
@attribute Area{1,2}
@attribute C-class{0,1,2,3,4,5,6,7,8}
@attribute M-class{0,1,2,3,4,5}
@attribute X-class{0,1,2}
@attribute Class{H,D,C,B,E,F}
@inputs LargestSpotSize, SpotDistribution, Activity, Evolution, Prev24Hour, HistComplex, BecomeHist, Area, C-class, M-class, X-class
@outputs Class
H H
H H
B B
C C
H H
E D
H H
E D
D C
H H
B B
E D
E E
H H
C C
E E
H H
H H
D E
C D
D D
D C
D C
H H
D C
B B
B B
B B
C C
B B
D D
D C
D D
D D
H H
H H
C C
D C
C D
D C
C C
E D
H H
D C
H H
H H
H H
H H
D C
C D
D D
F C
H H
C C
H H
C C
D D
H H
E D
F D
B B
C C
C C
H H
C C
C C
B B
H H
C C
H H
D D
B B
H H
D D
D D
H H
H H
D D
H H
H H
H H
E D
B B
C E
B B
C C
C C
F D
C C
D C
C C
H H
B B
H H
H H
H H
E D
H H
F E
B B
E E
C C
B B
D E
D C
D C
|
4909b7d9ed05652f3395df8d5eada9608f3e669d
|
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
|
/Six Shooter Tracking.sce
|
03d76689028f85435804aaa3e3ccbe198cf2be7d
|
[] |
no_license
|
MBHuman/Scenarios
|
be1a722825b3b960014b07cda2f12fa4f75c7fc8
|
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
|
refs/heads/master
| 2023-01-14T02:10:25.103083
| 2020-11-21T16:47:14
| 2020-11-21T16:47:14
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 53,510
|
sce
|
Six Shooter Tracking.sce
|
Name=Six Shooter Tracking
PlayerCharacters=TileFrenzy Challenger
BotCharacters=TileFrenzyStrafing Cube.bot;TileFrenzyStrafing Sphere.bot;Dodgey.bot;Quaker Bot Long Strafes.bot
IsChallenge=true
Timelimit=30.0
PlayerProfile=TileFrenzy Challenger
AddedBots=Dodgey.bot;Quaker Bot Long Strafes.bot;Quaker Bot Long Strafes.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=TileFrenzyStrafing_02x.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.5
ScorePerKill=1.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Flick
WeaponHeroTag=Pistol
DifficultyTag=5
AuthorsTag=Moomar
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=true
Description=Six Shooter Style, hit the moving targets
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=_
MinReactionTime=0.000001
MaxReactionTime=0.000001
MinSelfMovementCorrectionTime=0.000001
MaxSelfMovementCorrectionTime=0.000001
FlickFOV=90.0
FlickSpeed=10.0
FlickError=0.0
TrackSpeed=10.0
TrackError=0.0
MaxTurnAngleFromPadCenter=360.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=360.0
OuterAimPenalty=0.0
MaxError=0.0
ShootFOV=90.0
VerticalAimOffset=0.0
MaxTolerableSpread=0.0
MinTolerableSpread=0.0
TolerableSpreadDist=100000.0
MaxSpreadDistFactor=1.0
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=TileFrenzyStrafing Cube
DodgeProfileNames=TileFrenzy_Strafe1
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=_;_;_;_;_;_;_;_
WeaponSwitchTime=60.0
UseWeapons=false
CharacterProfile=TileFrenzyStrafing Cube
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=TileFrenzyStrafing Sphere
DodgeProfileNames=TileFrenzy_Strafe1
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=_;_;_;_;_;_;_;_
WeaponSwitchTime=60.0
UseWeapons=false
CharacterProfile=TileFrenzyStrafing Sphere
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=Dodgey
DodgeProfileNames=ADAD;MidStrafes;Stop;MidStrafes2
DodgeProfileWeights=1.5;3.0;0.1;1.2
DodgeProfileMaxChangeTime=1.25
DodgeProfileMinChangeTime=0.35
WeaponProfileWeights=0.0;0.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Dodgey
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=Quaker Bot Long Strafes
DodgeProfileNames=Long Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Quaker
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Character Profile]
Name=TileFrenzy Challenger
MaxHealth=1.0
WeaponProfileNames=TileFrenzy Challenge;AK-47;Six Shooter;My Weapon;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=0.0
CrouchHeightModifier=1.0
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=true
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=2.0
MainBBRadius=1.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=2.0
ProjBBRadius=1.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=-1.0
[Character Profile]
Name=TileFrenzyStrafing Cube
MaxHealth=1.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=0.0
CrouchHeightModifier=1.0
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=640.0
MaxCrouchSpeed=0.0
Acceleration=100000.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=100.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=1.000 Z=1.000
EnemyHeadColor=X=1.000 Y=0.000 Z=0.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=248.0
MainBBRadius=124.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=248.0
ProjBBRadius=124.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
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=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=-124.0
[Character Profile]
Name=TileFrenzyStrafing Sphere
MaxHealth=1.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=0.0
CrouchHeightModifier=1.0
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=640.0
MaxCrouchSpeed=0.0
Acceleration=100000.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=100.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=1.000 Z=1.000
EnemyHeadColor=X=1.000 Y=0.000 Z=0.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Spheroid
MainBBHeight=248.0
MainBBRadius=124.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=248.0
ProjBBRadius=124.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
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=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=-124.0
[Character Profile]
Name=Dodgey
MaxHealth=300.0
WeaponProfileNames=LG;;;;;;;
MinRespawnDelay=0.5
MaxRespawnDelay=0.5
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Quaker
MaxHealth=300.0
WeaponProfileNames=;;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=TileFrenzy_Strafe1
MaxTargetDistance=100000.0
MinTargetDistance=0.000001
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=10.0
MaxLRTimeChange=10.0
MinFBTimeChange=1.0
MaxFBTimeChange=1.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=1.0
DamageReactionMaximumDelay=1.0
DamageReactionCooldown=0.1
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=100.0
MaxProfileChangeTime=100.0
MinCrouchTime=0.2
MaxCrouchTime=0.2
MinJumpTime=0.1
MaxJumpTime=0.2
LeftStrafeTimeMult=100.0
RightStrafeTimeMult=100.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.2
BlockedMovementReactionMax=0.4
[Dodge Profile]
Name=ADAD
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.2
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.2
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=MidStrafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.32
MaxLRTimeChange=0.35
MinFBTimeChange=0.25
MaxFBTimeChange=0.6
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.2
DamageReactionMinimumDelay=0.13
DamageReactionMaximumDelay=0.16
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.2
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Oppose
TargetStrafeMinDelay=0.13
TargetStrafeMaxDelay=0.18
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.1
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=0.9
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Stop
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=false
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.15
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.1
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.1
StrafeSwapMaxPause=0.1
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=MidStrafes2
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.45
MaxLRTimeChange=0.45
MinFBTimeChange=0.4
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.15
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.2
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.1
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.1
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=0.8
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Long Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=TileFrenzy Challenge
Type=Hitscan
ShotsPerClick=1
DamagePerShot=100.0
KnockbackFactor=4.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=1000000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.1
ReloadTimeFromPartial=0.1
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=-100.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
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=0
CancelReloadOnKill=false
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.0
Explosive=false
Radius=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,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
[Weapon Profile]
Name=AK-47
Type=Hitscan
ShotsPerClick=1
DamagePerShot=36.0
KnockbackFactor=0.2
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=4000.0
DamageFalloffStopDistance=7500.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.02
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.2
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=390.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=4.0,15.0,-9.0,2.5
SpreadSCA=4.0,15.0,-9.0,2.5
SpreadMSA=4.0,15.0,-9.0,2.5
SpreadMCA=4.0,15.0,-9.0,2.5
SpreadSSH=2.0,27.0,-9.0,1.5
SpreadSCH=2.0,27.0,-9.0,0.0
SpreadMSH=100.0,1000.0,5.0,20.0
SpreadMCH=4.0,15.0,-9.0,1.8
MaxRecoilUp=0.3
MinRecoilUp=0.3
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.3
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.1
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=10.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.45
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.16
PSRResetDegreesPerSec=35.0
PSR0=0.5,0.0
PSR1=1.2,-0.1
PSR2=1.7,0.2
PSR3=1.7,0.2
PSR4=1.7,-0.85
PSR5=1.3,-0.45
PSR6=1.3,-0.75
PSR7=0.9,0.75
PSR8=-0.4,2.55
PSR9=0.75,0.95
PSR10=0.75,0.4
PSR11=-0.6,0.4
PSR12=0.35,1.0
PSR13=0.4,0.25
PSR14=-0.9,-1.5
PSR15=0.4,-1.0
PSR16=0.5,-1.3
PSR17=0.1,-1.6
PSR18=-0.7,-1.25
PSR19=0.2,-0.5
PSR20=0.2,0.1
PSR21=0.0,0.5
PSR22=0.3,0.1
PSR23=0.2,0.5
PSR24=0.5,-1.0
PSR25=-0.1,1.2
PSR26=-0.3,1.1
PSR27=-1.2,2.0
PSR28=0.1,1.4
PSR29=-0.1,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Six Shooter
Type=Hitscan
ShotsPerClick=1
DamagePerShot=100.0
KnockbackFactor=0.1
TimeBetweenShots=0.3
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=2200.0
DamageFalloffStopDistance=4500.0
DamageAtMaxRange=20.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.5
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=5.0
MinRecoilUp=5.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=My Weapon
Type=Hitscan
ShotsPerClick=1
DamagePerShot=45.0
KnockbackFactor=4.0
TimeBetweenShots=0.5
Pierces=false
Category=SemiAutoNoPrehold
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=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.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=1.0
MinRecoilUp=0.2
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=6.0
KnockbackFactor=2.0
TimeBetweenShots=0.046
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.05
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-1024.000000 1012.000000 -1023936.000000
1024.000000 1012.000000 -1023936.000000
1024.000000 1012.000000 -1024000.000000
-1024.000000 1012.000000 -1024000.000000
-1024.000000 -1036.000000 -1023936.000000
1024.000000 -1036.000000 -1023936.000000
1024.000000 -1036.000000 -1024000.000000
-1024.000000 -1036.000000 -1024000.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
-1024.000000 1012.000000 -2752.000000
1024.000000 1012.000000 -2752.000000
1024.000000 1012.000000 -2816.000000
-1024.000000 1012.000000 -2816.000000
-1024.000000 -1036.000000 -2752.000000
1024.000000 -1036.000000 -2752.000000
1024.000000 -1036.000000 -2816.000000
-1024.000000 -1036.000000 -2816.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
-1024.000000 -1036.000000 -2816.000000
1024.000000 -1036.000000 -2816.000000
1024.000000 -1036.000000 -1024000.000000
-1024.000000 -1036.000000 -1024000.000000
-1024.000000 -1100.000000 -2816.000000
1024.000000 -1100.000000 -2816.000000
1024.000000 -1100.000000 -1024000.000000
-1024.000000 -1100.000000 -1024000.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
-1088.000000 1012.000000 -2816.000000
-1024.000000 1012.000000 -2816.000000
-1024.000000 1012.000000 -1024000.000000
-1088.000000 1012.000000 -1024000.000000
-1088.000000 -1036.000000 -2816.000000
-1024.000000 -1036.000000 -2816.000000
-1024.000000 -1036.000000 -1024000.000000
-1088.000000 -1036.000000 -1024000.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
1024.000000 1012.000000 -2816.000000
1088.000000 1012.000000 -2816.000000
1088.000000 1012.000000 -1024000.000000
1024.000000 1012.000000 -1024000.000000
1024.000000 -1036.000000 -2816.000000
1088.000000 -1036.000000 -2816.000000
1088.000000 -1036.000000 -1024000.000000
1024.000000 -1036.000000 -1024000.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
-1024.000000 1076.000000 -2816.000000
1024.000000 1076.000000 -2816.000000
1024.000000 1076.000000 -1024000.000000
-1024.000000 1076.000000 -1024000.000000
-1024.000000 1012.000000 -2816.000000
1024.000000 1012.000000 -2816.000000
1024.000000 1012.000000 -1024000.000000
-1024.000000 1012.000000 -1024000.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
-1024.000000 1012.000000 -3072.000000
1024.000000 1012.000000 -3072.000000
1024.000000 1012.000000 -3136.000000
-1024.000000 1012.000000 -3136.000000
-1024.000000 -1036.000000 -3072.000000
1024.000000 -1036.000000 -3072.000000
1024.000000 -1036.000000 -3136.000000
-1024.000000 -1036.000000 -3136.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
-1024.000000 628.000000 -2816.000000
1024.000000 628.000000 -2816.000000
1024.000000 628.000000 -3072.000000
-1024.000000 628.000000 -3072.000000
-1024.000000 627.000000 -2816.000000
1024.000000 627.000000 -2816.000000
1024.000000 627.000000 -3072.000000
-1024.000000 627.000000 -3072.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
-1024.000000 244.000000 -2816.000000
1024.000000 244.000000 -2816.000000
1024.000000 244.000000 -3072.000000
-1024.000000 244.000000 -3072.000000
-1024.000000 243.000000 -2816.000000
1024.000000 243.000000 -2816.000000
1024.000000 243.000000 -3072.000000
-1024.000000 243.000000 -3072.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
-1024.000000 -140.000000 -2816.000000
1024.000000 -140.000000 -2816.000000
1024.000000 -140.000000 -3072.000000
-1024.000000 -140.000000 -3072.000000
-1024.000000 -141.000000 -2816.000000
1024.000000 -141.000000 -2816.000000
1024.000000 -141.000000 -3072.000000
-1024.000000 -141.000000 -3072.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
-1024.000000 -524.000000 -2816.000000
1024.000000 -524.000000 -2816.000000
1024.000000 -524.000000 -3072.000000
-1024.000000 -524.000000 -3072.000000
-1024.000000 -525.000000 -2816.000000
1024.000000 -525.000000 -2816.000000
1024.000000 -525.000000 -3072.000000
-1024.000000 -525.000000 -3072.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
-1024.000000 -908.000000 -2816.000000
1024.000000 -908.000000 -2816.000000
1024.000000 -908.000000 -3072.000000
-1024.000000 -908.000000 -3072.000000
-1024.000000 -909.000000 -2816.000000
1024.000000 -909.000000 -2816.000000
1024.000000 -909.000000 -3072.000000
-1024.000000 -909.000000 -3072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type PlayerSpawn
Vector3 position 0.000000 -12.000000 -4864.000000
Bool8 teamB 0
entity
type CameraPath
UInt32 entityIdAttachedTo 132
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 768.000000 628.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 384.000000 628.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 0.000000 628.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 628.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -768.000000 628.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -768.000000 244.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 244.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 0.000000 244.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 384.000000 244.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 768.000000 244.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -768.000000 -140.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 -140.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 0.000000 -140.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 384.000000 -140.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 768.000000 -140.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -768.000000 -524.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 -524.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 0.000000 -524.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 384.000000 -524.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 768.000000 -524.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -768.000000 -908.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 -908.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 0.000000 -908.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 384.000000 -908.000000 -2944.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 768.000000 -908.000000 -2944.000000
Bool8 teamA 0
|
3a420a5ae849b2717ac1cc6af1887fe5378cbf17
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/555/CH3/EX3.3/3.sce
|
616eb2d432c8ae3d67008fd8ad996e7a64f7566a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 442
|
sce
|
3.sce
|
// Implementation of example 3.3
// Basic and Applied Thermodynamics by P.K.Nag
// page 55
clc
clear
p=101.325 // (atmospheric pressure in kN/m^2)
N=10000 // no. of revolutions
T=1.275 // (torque in Nm)
d=0.6 //(diameter in m)
l=0.8 //(distance moved in m)
w1=(2*%pi*T*N)/1000; // work done by stirring device
a=((%pi/4)*d^2);
w2=(p*a)*l; // work done by system
w=(-w1)+w2;
disp("net work transfer")
disp(w)
disp("kJ")
|
603814c10ec03c1dd445e2cc50fbe86d174539c9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1364/CH9/EX9.2.2/9_2_2.sce
|
99bdc13fb868557ba3b895eec057ce3af3311410
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 252
|
sce
|
9_2_2.sce
|
clc
//initialisation of variables
A= 600 //ft^2
W= 40 //lbf/ft^2
n= 75 //percent
r= 10
v= 300 //miles/hour
//CALCULATIONS
L= W*A
D= L/r
P= D*v*5280/(60*33000)
hp= P*100/n
//RESULTS
printf (' brake horse-power of the engines= %.f h.p',hp)
|
1b88abf0cdf9770bd89450c0a32164e716f0eac0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2414/CH14/EX14.6/Ex14_6.sce
|
3a45ad90054c86ee628e79ce80a323bc48547d97
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 209
|
sce
|
Ex14_6.sce
|
clc;
close();
clear();
//page no 476
//prob no. 14.6
L=320*10^-9; //H/m
C=90*10^-12; //F/m
v=1/sqrt(L*C); //from Ex14.5
Er=(3*10^8/v)^2;
mprintf('The dielectic constant is, Er = %.2f \n',Er);
|
6da88ea708e3706ec6cb00d8ce466cb2450f2277
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1904/CH11/EX11.2/11_2.sce
|
8e47035de295b682f7d3c8d4acad105bfe6b67ae
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
11_2.sce
|
//To Determine the fault components of the system
//Page 606
clc;
clear;
L=4; //Total Length of the cable
Lov=3;//Length of Overhead Cable
Lu=L-Lov; //Length of Underground Cable
Nct=2; //Number of circuit terminations
T=10; //No of years for which the record is shown
Fov=2; // Faults Per Mile of the Over Head Cable
Fu=1; //Faults Per Mile of The Underground cable
Ct=0.3/100// Cable Termination Fault Rate
//Repair Time
Tov=3; //Over Head
Tu=28; //Underground
Tct=3; //Cable Termination
lamdaFDR= (Lov*Fov/T)+(Lu*Fu/T)+(2*Ct); //Total Annual Fault Rate
rFDR=((Tov*Lov*Fov/T)+(Tu*Lu*Fu/T)+(2*Ct*Tct))/lamdaFDR; //Annual Fault Restoration Time
mFDR=8760-rFDR; //Annual Mean Time of Failure
UFDR=rFDR*100/(rFDR+mFDR); //Unavailability of Feeder
AFDR=100-UFDR; //Availability of Feeder
printf('a) The Total Annual Fault Rate is %g faults per year\n',lamdaFDR)
printf('b) The Annual Fault Restoration Time is %g hours per fault per year\n',rFDR)
printf('c) Unavailability of the feeder is %g percent\n',UFDR)
printf('d) Availability of the feeder is %g percent\n',AFDR)
|
32cc03938fd0177d7a8ae1efb7c416118ae5f694
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set7/s_Electronic_Devices_And_Circuits__J._Paul_2045.zip/Electronic_Devices_And_Circuits__J._Paul_2045/CH13/EX13.10/Ex13_10.sce
|
44d8e2050f252073e6dee6f1f97e650547758511
|
[] |
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
| 187
|
sce
|
Ex13_10.sce
|
errcatch(-1,"stop");mode(2);//pagenumber 582 example 10
y=2.5;//divisions
y1=1.25;//divisions
y=y1/y;
w=asind(y);
disp("phase angle = "+string((w))+"degre");
exit();
|
2e97c45452615ad4b87eba7e9f1fe8dc1871a363
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1802/CH7/EX7.15/Exa7_15.sce
|
6385f3f3e0b176c0ba040897957bcb4ffdb55641
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 585
|
sce
|
Exa7_15.sce
|
//Exa 7.15
clc;
clear;
close;
//Given data :
format('v',7);
//VD in section AC from RHS: VD1=(40+x)*0.02+0.17*x
//VD in section AC from LHS: VD2=(350-x)*0.015+(150-x)*0.03
//Equating two VDs we get
//x*0.02+0.17*x+0.015*x+x*0.03=350*0.015+150*0.03-40*0.02
x=(350*0.015+150*0.03-40*0.02)/0.082;//in A
VB=500-(x+40)*0.02;//in volts
disp(VB,"Potential at point B(in V) :");
VC=VB-(x*0.017);//in volts
disp(VC,"Potential at point C(in V) :");
VD=500-(350-x)*0.015;//in volts
disp(VD,"Potential at point D(in V) :");
//Note : Answer of 3rd part is given wrong in the book.
|
b084c6082b1321d28cbeffdf301a3ffa3b7a051e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/752/CH7/EX7.3.1/7_3_1.sce
|
e460144a1b9acb5398f4f18d836ab7dc8f043d53
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 721
|
sce
|
7_3_1.sce
|
clc;
//page no 227
//prob no. 7.3.1
//An RF receiver tunes signal in 550-1600kHz with IF=455kHz
fs_min=550*10^3;fs_max=1600*10^3;IF=455*10^3;
//Determination of freq tuning ranges
fo_min=fs_min+IF;
fo_max=fs_max+IF;
disp('Hz',fo_max,'fo_max=','Hz',fo_min,'fo_min=','The freq tuning range is');
Rf=(fo_max)/(fo_min);//calculation of freq tuning range ratio
disp(Rf,'Rf=','The tuning range ratio of oscillator is');
Rc=Rf^2;//calculation of capacitance tuning range ratio
disp(Rc,'Rc=','The capacitor tuning range ratio of oscillator is');
//For RF section
Rf1=fs_max/fs_min;
disp(Rf1,'Rf=','The tuning range ratio of RF-ckt is');
Rc1=Rf1^2;
disp(Rc1,'Rc','The capacitor tuning range ratio of RF-ckt is');
|
2c5a6f829962b5661eb32be2ace06857ae1ff891
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/2.5/Unix-Windows/scilab-2.5/tests/matsys.tst
|
293eb287d206b5514cc114372dc79396dc1589e2
|
[
"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
| 4,422
|
tst
|
matsys.tst
|
// test of matsys functions
clear
// debug
if debug()<>0 then pause,end
debug(4)
if debug()<>4 then pause,end
debug(0)
//who
a=33;bbb=-1;
vars=who('get');
if or(vars(1:2)<>['bbb';'a']) then pause,end
//lines
ln=lines();lines(30);ln1=lines();
if ln1(2)<>30 then pause,end
lines(45,70);ln1=lines();
if or(ln1<>[70,45]) then pause,end
//argn
deff('[x,y]=foo(a,b)','[lhs,rhs]=argn(0);x=[lhs,rhs];y=-1')
if or(foo(1)<>[1 1]) then pause,end
if or(foo(1,2)<>[1 2]) then pause,end
if or(foo()<>[1 0]) then pause,end
[x,y]=foo(1);if or(x<>[2 1]) then pause,end
[x,y]=foo(1,1);if or(x<>[2 2]) then pause,end
[x,y]=foo();if or(x<>[2 0]) then pause,end
deff('[x,y]=foo(a,b)','lhs=argn(0);x=lhs;y=-1')
if foo(1)<>1 then pause,end
if foo(1,2)<>1 then pause,end
[x,y]=foo(1);if x<>2 then pause,end
//
deff('[x,y]=foo(a,b)','[lhs,rhs]=argn();x=[lhs,rhs];y=-1')
if or(foo(1)<>[1 1]) then pause,end
if or(foo(1,2)<>[1 2]) then pause,end
if or(foo()<>[1 0]) then pause,end
[x,y]=foo(1);if or(x<>[2 1]) then pause,end
[x,y]=foo(1,1);if or(x<>[2 2]) then pause,end
[x,y]=foo();if or(x<>[2 0]) then pause,end
deff('[x,y]=foo(a,b)','lhs=argn();x=lhs;y=-1')
if foo(1)<>1 then pause,end
if foo(1,2)<>1 then pause,end
[x,y]=foo(1);if x<>2 then pause,end
//type
if type(1)<>1 then pause,end
a=%s;if type(a)<>2 then pause,end
//mode (cannot be tested here)
//mode(7);if mode()<>7 then pause,end;mode(2);
//errcatch,errclear,iserror
clear
//errcatch(4,'continue')
//unknown
//if iserror()<>1 then pause,end
//errclear()
//if iserror()<>0 then pause,end
//unknown
//if iserror(4)<>1 then pause,end
//errclear(4)
//if iserror(4)<>0 then pause,end
errcatch(4,'continue','nomessage')
unknown
if iserror()<>1 then pause,end
errclear()
if iserror()<>0 then pause,end
unknown
if iserror(4)<>1 then pause,end
errclear(4)
if iserror(4)<>0 then pause,end
errcatch()
//error
errcatch(4,'continue','nomessage')
error(4)
if iserror()<>1 then pause,end
errclear();errcatch()
errcatch(-1,'continue','nomessage')
error('test erreur');
errclear();
error('test erreur',999);
errclear();
errcatch()
//resume
deff('foo()','[a,b]=resume(''x'',''y'')')
foo();
if a<>'x'|b<>'y' then pause,end
//format
fmt=format();
format('v')
sqrt(3)
format(10)
sqrt(3)
format(12,'v')
sqrt(3)
format('v',15)
sqrt(3)
format('e')
sqrt(3)
format(10)
sqrt(3)
f=format();
if or(f<>[0 10]) then pause,end
format(10,'v');
//exists
a=1
if exists('a')<>1 then pause,end
clear a
if exists('a')<>0 then pause,end
//predef
if %f then
N=predef();
a=1;
predef('all');
errcatch(13,'continue','nomessage')
clear a
if iserror()<>1 then pause,end
errclear();errcatch()
predef('clear');
errcatch(13,'continue','nomessage')
clear a
if iserror()<>0 then pause,end
errclear();errcatch()
predef(N);
if predef()<>N then pause,end
end
// newfun, clearfun, funptr
fptr=funptr('sin');
if fptr<>623 then pause,end
newfun('mysin',fptr);
if mysin(1)<>sin(1) then pause,end
clearfun('mysin')
errcatch(4,'continue','nomessage')
mysin(1)
if iserror()<>1 then pause,end
errclear();errcatch();
//whereis
if whereis('sci2exp')<>'utillib' then pause,end
if whereis('aaa')<>[] then pause,end
//where
deff('[a,b]=foo()','[a,b]=where()')
[a,b]=foo();
if a<>2|b<>'foo' then pause,end
//funcprot
funcprot(0)
deff('foo()','a=1')
funcprot(1)
deff('foo()','a=2')
errcatch(111,'continue','nomessage')
funcprot(2)
deff('foo()','a=3')
if iserror()<>1 then pause,end
errclear();errcatch()
if funcprot()<>2 then pause,end
funcprot(1)
// timer
timer();svd(rand(100,100));if timer()<=0 then pause,end
// comp
deff('[a]=foo()','a=1','n')
comp(foo)
if foo()<>1 then pause,end
// stacksize (cannot be tested here)
//stacksize(3d6)
//sz=stacksize();
//if sz(1)<>3d6 then pause,end
//mtlb_mode
mtlb_mode(%t)
if ~mtlb_mode() then pause,end
if []+1<>[] then pause,end
mtlb_mode(%f)
if mtlb_mode() then pause,end
//sciargs
args=sciargs();
if type(args)<>10 then pause,end
//ieee
ieee(2)
if 1/0<>%inf then pause,end
ieee(1)
if 1/0<>%inf then pause,end
ieee(0)
errcatch(27,'continue','nomessage')
1/0
if iserror()<>1 then pause,end
errclear();errcatch()
//typename
[typs,nams]=typename();
if or(typs<>[1;2;4;5;6;7;8;10;11;13;14;15;16;17;128;129]) then pause,end
if or(nams<>['s';'p';'b';'sp';'spb';'msp';'i';'c';'m';'mc';
'f';'l';'tl';'ml';'ptr';'ip']) then pause,end
typename('mytype',1024)
[typs,nams]=typename();
if typs($)<>1024|nams($)<>'mytype' then pause,end
//global, isglobal, intglobal --> global.tst
|
733e098b15f60fff8c3ebeced679a42f1ea65f76
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set6/s_Electrical_Measurements_Measuring_Instruments_K._Shinghal_2318.zip/Electrical_Measurements_Measuring_Instruments_K._Shinghal_2318/CH3/EX3.20/ex_3_20.sce
|
a2b73b06a739734715568b1240c578760073d4f0
|
[] |
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
| 192
|
sce
|
ex_3_20.sce
|
errcatch(-1,"stop");mode(2);//Example 3.20:Resistance
;
;
//given data :
R2=600;// in ohm
R3=400;// in ohm
R4=1000;// in ohm
R1=(R2*R3/R4);
disp(R1,"Unknown resistance,R1(ohm) = ")
exit();
|
9e46c0f4be69e8986bc7521379d3370a62e90bbf
|
c3280ada260999123d75347caeaad1c7fc9f8266
|
/kode/naif-gauss.sci
|
2879c87fb57d1aa8a3cb94f66d76c8a7c17d956b
|
[] |
no_license
|
dikisp/Kuliah-MetNum
|
3bd01f0573f2a18eb320a716da841ca3ec69930b
|
7775f5e0251457702fb3e24c88483df0ff37fee7
|
refs/heads/master
| 2020-03-23T06:41:49.307866
| 2018-07-17T03:13:25
| 2018-07-17T03:13:25
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 550
|
sci
|
naif-gauss.sci
|
function nilaix=naif_gauss(A,b)
M=[A b];
[n,m]=size(M);
for j = 1:n-1
for i = j+1:n
M(i,:)=-M(i,j)/M(j,j)*M(j,:)+M(i,:);
end
end
A=M(1:n,1:n);b=M(:,n+1);
nilaix=sub_balik(A,b);
endfunction
function solusi=sub_balik(A,b)
[n,m]=size(A);//A hrs matriks segitiga atas dan tidak bole elemen diagonal utaman = 0
x(n)=b(n)/A(n,n);
for k=n-1:-1:1
jum=0;
for j = k+1:n
jum=jum+A(k,j)*x(j);
end
x(k)=(b(k)-jum)/A(k,k)
end
solusi=x;
endfunction
|
703ce7d99037dca253dd1eefc148eb20920c6929
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2582/CH1/EX1.1/Ex1_1.sce
|
0495f46163c8ca248d23e47ee4332a09a9f79042
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 361
|
sce
|
Ex1_1.sce
|
//Ex 1.1
clc;clear;close;
VDD=1.8;//V
IREF=50;//micro A
IO=IREF;//micro A
L=0.5;//micro m
W=5;//micro m
Vt=0.5;//V
Kn_dash=250;//micro A/V^2
VGS=sqrt(IO/(1/2*Kn_dash*(W/L)))+Vt;//V
disp(VGS,"Value of VGS(V) : ");
R=(VDD-VGS)/(IREF*10^-6);//ohm
disp(R/1000,"Value of R(kohm) : ");
VDS2=VGS-Vt;//V
VO=VDS2;//V
disp(VO,"Lowest value of VO(V) : ");
|
324b2be241135a8d3caf18317631c0b3a9fd0c93
|
190d7a52f0fed9737c92e627958e4c1b6c7ddb55
|
/Robotics/Scilab Code/PlotOccupancyMap.sce
|
ad246586e004b013f5f5fb979e42fd13cc6bcc73
|
[] |
no_license
|
Jsw-4111/SchoolWork
|
3389c9179d088b26c98a3410180dc3f2569bfdf3
|
a9a6e345fc30bfa79a7e2bb4848655cb301facee
|
refs/heads/master
| 2023-04-12T01:11:02.216417
| 2021-04-25T21:21:06
| 2021-04-25T21:21:06
| 300,689,960
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,268
|
sce
|
PlotOccupancyMap.sce
|
function [ ] = PlotOccupancyMap( OccupancyMap , GoalLocation)
//UNTITLED Summary of this function goes here
// Detailed explanation goes here
scaling = 10;
[rows, cols] = size(OccupancyMap);
VisualMap = zeros((rows-1) * scaling, (cols-1)*scaling);
for i=1:rows
for j=1:cols
if(OccupancyMap(i,j) == 1)
vi = 1 + scaling * (i-1);
vj = 1 + scaling * (j-1);
beginx = max(1, vj-scaling/2);
endx = min(scaling * (cols-1), vj+scaling/2-1);
beginy = max(1, vi-scaling/2);
endy = min(scaling * (rows-1), vi+scaling/2-1);
VisualMap(beginy:endy,beginx:endx) = 1;
end
end
end
figure(1);
clf
imshow(VisualMap);
//some plot formatting
//axis on;
//set(gca, 'XTick', [100 200 300 400 500 600 700 800 900]);
//set(gca, 'YTick', [100 200 300 400 500 600 700 800 900]);
//set(gca, 'XTickLabel', [10 20 30 40 50 60 70 80 90]);
//set(gca, 'YTickLabel', [10 20 30 40 50 60 70 80 90]);
//xlabel('x-axis');
//ylabel('y-axis');
// I replaced "hold on;" with:
set(gca(), "auto_clear", "off");
//Plot the goal location
plot((GoalLocation(1)-1) * scaling + .5, (GoalLocation(2)-1) * scaling + .5, 'b', 'Marker', 's', 'MarkerSize', scaling, 'MarkerFaceColor', 'b');
end
|
13fbef2c5f1d4abb61e239e7fc0f7ddc5066c087
|
2ae858a680a4ccf8a2ec89a45a1e48a0292d8eab
|
/macros/lab2xyz.sci
|
fc875102ddf897999cb2609788f731ed71d3c3a3
|
[] |
no_license
|
shreyneil/FOSSEE-Image-Processing-Toolbox
|
f315a82c325b2d6cbd0611689f3e30071a38490d
|
dd1cbd0dcbe0c3dd11d6ce1ab205b4b72011ae56
|
refs/heads/master
| 2020-12-02T16:26:13.755637
| 2017-07-07T19:22:33
| 2017-07-07T19:22:33
| 96,552,147
| 0
| 0
| null | 2017-07-07T15:32:15
| 2017-07-07T15:32:15
| null |
UTF-8
|
Scilab
| false
| false
| 1,717
|
sci
|
lab2xyz.sci
|
// Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author: Shreyash Sharma
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [output] = lab2xyz(vartype,varargin)
// This function is used to Convert CIE 1976 L*a*b* to CIE 1931 XYZ.
//
// Calling Sequence
// xyz = lab2xyz(lab)
// xyz = lab2xyz(lab,Name,Value)
//
// Parameters
// lab: Color values to convert, specified as a P-by-3 matrix of color values (one color per row), an M-by-N-by-3 image array, or an M-by-N-by-3-by-F image stack.
// Whitepoint: Reference white point, specified as a 1-by-3 vector or one of the CIE standard illuminants.eg,'a','c','e','d50','d55','d65','icc'.
// xyz : Converted color values, returned as an array the same shape and type as the input.
//
// Description
// xyz = lab2xyz(lab) converts CIE 1976 L*a*b* values to CIE 1931 XYZ values.xyz = lab2xyz(lab,Name,Value) specifies additional options with one or more Name,Value pair arguments.
//
// Examples
// tr1 = lab2xyz([50 10 -5]);
// tr1
// tr2 = lab2xyz([50 10 -5],'WhitePoint','d50');
// tr2
//
[lhs rhs] = argn(0);
if(rhs>3)
eror(msprintf("Too many input arguments"));
end
select rhs
case 1 then
a = raw_lab2xyz(vartype);
case 2 then
a = raw_lab2xyz(vartype,varargin(1));
case 3 then
a = raw_lab2xyz(vartype,varargin(1),varargin(2));
end
if(type(a)==15)
d = size(a);
for i=1:d
output(:,:,i) = a(i);
end
end
output = a
endfunction
|
cfddf365bb68e00ef3077bf4d1b4f3ff1a637517
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/914/CH2/EX2.2/ex2_2.sce
|
4f797ec4638ae67e8c82cf953ed24b87cdf7609a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 406
|
sce
|
ex2_2.sce
|
clc;
warning('off');
printf("\n\n example2.2 - pg29");
// given
dely=0.1; //[m] - distance between two parralel plates
delUx=0.3; //[m/sec] - velocity of a plate
mu=0.001; //[kg/m*sec] - viscosity
// using the formula tauyx=F/A=-mu*(delUx/dely)
tauyx=-mu*(delUx/dely);
printf("\n\n the momentum flux and the the force per unit area,(which are the same thing) is\n tauyx=F/A=%fN/m^2",tauyx);
|
23429d96cade3adcaee0bbd1b2898a35649e72e6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1736/CH9/EX9.10/Ch09Ex10.sce
|
319a7117c4ba49df8a621b70152d1c9f7fed35b9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 391
|
sce
|
Ch09Ex10.sce
|
// Scilab code Ex9.10 Page:287 (2006)
clc; clear;
alpha = 0.5; // Isotopic exponent of Osmium
T_c = 0.655; // Transition temperature of Osmium, K
M = 190.2; // Mass of Osmium, amu
K = T_c*M^alpha; // K is the constant of proportionality
printf("\nThe value of constant of proportionality = %4.2f ", K);
// Result
// The value of constant of proportionality = 9.03
|
215dd68f50a2599a1c1ff15839aca7ac481ff2a6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3754/CH29/EX29.2/29_2.sce
|
3e2822d65c3b0bf1eaa3f9edf19d00c931bda885
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 303
|
sce
|
29_2.sce
|
clear//
//Variables
Av = 100.0 //Voltage gain
A1v = 20.0 //Voltage gain with negative feedback
//Calculation
beta = (Av/A1v - 1) / Av //feedback ratio
//Result
printf("\n The percentage of the negative feedback is %0.3f",beta * 100)
|
1b9afd4973f05520a912841fc693126f134ff25e
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.3.1/macros/percent/%bhs.sci
|
b4e9347d9648b1e866c5f346f60bc6c61c1c646d
|
[
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] |
permissive
|
clg55/Scilab-Workbench
|
4ebc01d2daea5026ad07fbfc53e16d4b29179502
|
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
|
refs/heads/master
| 2023-05-31T04:06:22.931111
| 2022-09-13T14:41:51
| 2022-09-13T14:41:51
| 258,270,193
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 41
|
sci
|
%bhs.sci
|
function r=%bhs(a,b)
// r=a&b
r=a&(b<>0)
|
44206f2b8c33b458ee0c8eed71c890471fc57c0d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1862/CH17/EX17.2/C17P2.sce
|
d04e0e1f2fe94c81a2230c7c694d39be2c750495
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,888
|
sce
|
C17P2.sce
|
clear
clc
//to find total energy stored in the system
//to find maximum speed and magnitude of maximum acceleration of block
//to find position,velocity and acceleration of block at t = 0.215s
// GIVEN:
//refer to problem 17-1
//mass of boby
M = 1.65//in Kg
//increase in length
y = 7.33//in cm
//mass of block
m = 2.43//in Kg
//distance by which spring is streched
x_m = 11.6//in cm
//time
t = 0.215//seconds
//acceleration due to gravity
g = 9.81//in m/s^2
// SOLUTION:
//applying simple harmonic motion equation
//equating forces in y direction
//force constant k of spring
k = (-M*g)/(-y*10^-2)//in N/m //taking y in meters
//total energy stored in the system
E = (1/2)*k*((x_m*10^-2)^2)//in J
//magnitude of kinetic energy
K_max = E//in J
//maximum speed of block
v_max = sqrt((2*K_max)/m)//in m/s
//maximum acceleration of block
a_max = (k*(x_m*10^-2))/m//in m/s^2
//period of oscillation
T = (2*%pi*(sqrt(m/k)))*10^3//in miliseconds
//angular frequency
omega = (2*%pi)/(T*10^-3)//in rad/s
z = omega*t
//position of block at t = 0.215s
x = (x_m*10^-2)*(cos(z))//in m
//velocity of block at t = 0.215s
vx = -(omega*(x_m*10^-2))*(sin(z))//in m/s
//acceleration of block at t = 0.215s
ax = -(omega^2)*x//in m/s^2
omega = nearfloat("succ",9.536)
a_max = nearfloat("succ",10.6)
x = nearfloat("succ",-0.0535)
ax = nearfloat("succ",4.87)
printf ("\n\n Total energy stored in the system E = \n\n %.2f J",E)
printf ("\n\n Maximum speed of block v_max = \n\n %.2f m/s",v_max)
printf ("\n\n Maximum acceleration of block a_max = \n\n %.1f m/s^2",a_max)
printf ("\n\n Angular frequency omega = \n\n %.3f rad/s",omega)
printf ("\n\n Position of block at t = 0.215s x = \n\n %.4f m",x)
printf ("\n\n Velocity of block at t = 0.215s vx = \n\n %.3f m/s",vx)
printf ("\n\n acceleration of block at t = 0.215s ax = \n\n %.2f m/s^2",ax)
|
48e6a100b6b52c955d31474d3e86c83e9e842d04
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2606/CH8/EX8.15/ex8_15.sce
|
741fad04f4c70ce6d194c9cabf6da776242c7800
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,678
|
sce
|
ex8_15.sce
|
//Page Number: 8.15
//Example 8.15
clc;
//Given Noise figure
NF=5; //dB
F=(10^(NF/10));
Ta=1050; //Kelvin
//(a) Overall Noise Figure
T=20; // degree Celsius
To=T+273; //Kelvin
//Effective Noise temperature
Te=((F-1)*To);
disp('K',Te,'Effective Noise temperature');
//Overall effective Noise Temperature
TIN=Ta+Te;
disp('K',TIN,'Overall Effective Noise temperature');
//Overall noise figure
ONF=(1+(TIN/To));
ONFdB=(10*(log10(ONF))); //dB
disp('dB',ONFdB,'Overall Noise Figure:');
//(b)Input Signal Power
//Given Output SNR
Outsnr=6; //dB
Osnr=(10^(Outsnr/10));
Isnr=ONF*Osnr;
//Input Noise Power=KTB
K=1.38D-23;
B=50000;
Pni=K*TIN*B; //W
//Input signal Power
Psi=Isnr*Pni; //W
PsidBW=(10*(log10(Psi/1))); //dBW
disp('dBW',PsidBW,'Input signal Power:');
//(c)Minimum detectable signal Vmin
//Given
Osnr=10; //dB
R=50; //Ohms
FF1=3; //dB
F1=(10^(FF1/10));
FF2=5; //dB
F2=(10^(FF2/10));
GG1=7;
G1=(10^(GG1/10));
//Using F=F1+((F2-1)/G1)
Fa=F1+((F2-1)/G1);
Fa1=(10*(log10(Fa)));
//Equivalent Noise Tempertaure
Te1=((Fa-1)*To);
disp('K',Te1,'Equivalent Noise temperature:');
//Overall effective Noise Temperature
TIN1=Ta+Te1;
disp('K',TIN1,'Effective Noise temperature:');
//Input Noise Power=KTB
Pni1=K*TIN1*B; //W
//Overall noise figure
ONF1=(1+(TIN1/To));
ONFdB1=(10*(log10(ONF)));
disp('W',ONFdB1,'Overall Noise Figure:');
//Input SNR
Isnr1=ONF1*Osnr;
//Input signal Power
Psi1=Isnr1*Pni; //W
disp('W',Psi1,'Input Signal Power:');
//Now as Vmin^2/R=Psi1
//Therefore
Vmin=sqrt(Psi1*R);
disp('V',Vmin,'Minimum detectable signal Vmin:');
|
df1432d811255401673c90066702fe78e5d37bb7
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set10/s_Fluid_Mechanics_I._A._Khan_1962.zip/Fluid_Mechanics_I._A._Khan_1962/CH1/EX1.3/example1_3.sce
|
06d91261b812e1a1314ab349e9d0c6fd901a4409
|
[] |
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
| 268
|
sce
|
example1_3.sce
|
errcatch(-1,"stop");mode(2);//example 1.3
//page 13
; funcprot(0);
//initialissation of variable
Beta1=2.28*10^9;
Beta2=2.94*10^9;
Beta_av=Beta1/2+Beta2/2;
delP=1034-103.4;
V=10;
delV=-delP/Beta_av*V;
disp(-delV,"net reduction of volume(m^3)=");
exit();
|
d753908fa4bba91b1f3c7f2d945d0c790cc08653
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1673/CH6/EX6.15/6_15.sce
|
d9a4a5d5071026f7dd9b742953f37ebd4b6da4f1
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 394
|
sce
|
6_15.sce
|
//euler's maclaurin formula
//example 6.15
//page 233
clc;clear;close;
y=[0 1 0];
h=%pi/4;
I=h*(y(1)+2*y(2)+y(3))/2+(h^2)/12+(h^4)/720;
printf(' the value of integrand with h=%f is : %f\n\n',h,I)
h=%pi/8;
y=[0 sin(%pi/8) sin(%pi*2/8) sin(%pi*3/8) sin(%pi*4/8)]
I=h*(y(1)+2*y(2)+2*y(3)+2*y(4)+y(5))/2+(h^2)/2+(h^2)/12+(h^4)/720;
printf(' the value of integrand with h=%f is : %f',h,I)
|
33b308a82303fd201393b6d8d969f9f0c3d2e281
|
b2efed85f1632d9ed4b7d9f4eebc7126d3074940
|
/ted_mini/artandsci_positive/113.ted.sci
|
af0ed448e22a4a3d61dc36ad321de51e7ed1afe3
|
[] |
no_license
|
joytafty-work/unsupervised_nlp
|
837d8ed75eb084b630d75a1deba7bdd53bbcf261
|
7812c7d24bb677c90cf6397ed0e274caba1b884c
|
refs/heads/master
| 2021-01-10T09:24:33.254190
| 2015-11-11T20:40:32
| 2015-11-11T20:40:32
| 45,651,958
| 2
| 7
| null | 2018-01-28T18:54:18
| 2015-11-06T01:42:42
|
Scilab
|
UTF-8
|
Scilab
| false
| false
| 22,123
|
sci
|
113.ted.sci
|
that splendid music the coming in music the elephant march from aida is the music i ve chosen for my funeral and you can see why it s triumphal i wo n t feel anything but if i could i would feel triumphal at having lived at all and at having lived on this splendid planet and having been given the opportunity to understand something about why i was here in the first place before not being here can you understand my quaint english accent like everybody else i was entranced yesterday by the animal session robert full and frans lanting and others the beauty of the things they showed the only slight jarring note was when jeffrey katzenberg said of the mustang the most splendid creatures that god put on this earth now of course we know that he did n t really mean that but in this country at the moment you ca n t be too careful i m a biologist and the central theorem of our subject the theory of design darwin s theory of evolution by natural selection in professional circles everywhere it s of course universally accepted in non professional circles outside america it s largely ignored but in non professional circles within america it arouses so much hostility that it s fair to say that american biologists are in a state of war the war is so worrying at present with court cases coming up in one state after another that i felt i had to say something about it if you want to know what i have to say about darwinism itself i m afraid you re going to have to look at my books which you wo n t find in the bookstore outside contemporary court cases often concern an allegedly new version of creationism called intelligent design or id do n t be fooled there s nothing new about id it s just creationism under another name rechristened i choose the word advisedly for tactical political reasons the arguments of so called id theorists are the same old arguments that had been refuted again and again since darwin down to the present day there is an effective evolution lobby coordinating the fight on behalf of science and i try to do all i can to help them but they get quite upset when people like me dare to mention that we happen to be atheists as well as evolutionists they see us as rocking the boat and you can understand why creationists lacking any coherent scientific argument for their case fall back on the popular phobia against atheism teach your children evolution in biology class and they ll soon move on to drugs grand larceny and sexual pre version in fact of course educated theologians from the pope down are firm in their support of evolution this book finding darwin s god by kenneth miller is one of the most effective attacks on intelligent design that i know and it s all the more effective because it s written by a devout christian people like kenneth miller could be called a godsend to the evolution lobby because they expose the lie that evolutionism is as a matter of fact tantamount to atheism people like me on the other hand rock the boat but here i want to say something nice about creationists it s not a thing i often do so listen carefully i think they re right about one thing i think they re right that evolution is fundamentally hostile to religion i ve already said that many individual evolutionists like the pope are also religious but i think they re deluding themselves i believe a true understanding of darwinism is deeply corrosive to religious faith now it may sound as though i m about to preach atheism and i want to reassure you that that s not what i m going to do in an audience as sophisticated as this one that would be preaching to the choir no what i want to urge upon you instead what i want to urge upon you is militant atheism but that s putting it too negatively if i was a person who were interested in preserving religious faith i would be very afraid of the positive power of evolutionary science and indeed science generally but evolution in particular to inspire and enthrall precisely because it is atheistic now the difficult problem for any theory of biological design is to explain the massive statistical improbability of living things statistical improbability in the direction of good design complexity is another word for this the standard creationist argument there is only one they all reduce to this one takes off from a statistical improbability living creatures are too complex to have come about by chance therefore they must have had a designer this argument of course shoots itself in the foot any designer capable of designing something really complex has to be even more complex himself and that s before we even start on the other things he s expected to do like forgive sins bless marriages listen to prayers favor our side in a war disapprove of our sex lives and so on complexity is the problem that any theory of biology has to solve and you ca n t solve it by postulating an agent that is even more complex thereby simply compounding the problem darwinian natural selection is so stunningly elegant because it solves the problem of explaining complexity in terms of nothing but simplicity essentially it does it by providing a smooth ramp of gradual step by step increment but here i only want to make the point that the elegance of darwinism is corrosive to religion precisely because it is so elegant so parsimonious so powerful so economically powerful it has the sinewy economy of a beautiful suspension bridge the god theory is not just a bad theory it turns out to be in principle incapable of doing the job required of it so returning to tactics and the evolution lobby i want to argue that rocking the boat may be just the right thing to do my approach to attacking creationism is unlike the evolution lobby my approach to attacking creationism is to attack religion as a whole and at this point i need to acknowledge the remarkable taboo against speaking ill of religion and i m going to do so in the words of the late douglas adams a dear friend who if he never came to ted certainly should have been invited richard dawkins he was good i thought he must have been he begins this speech which was tape recorded in cambridge shortly before he died he begins by explaining how science works through the testing of hypotheses that are framed to be vulnerable to disproof and then he goes on i quote religion does n t seem to work like that it has certain ideas at the heart of it which we call sacred or holy what it means is here is an idea or a notion that you re not allowed to say anything bad about you re just not why not because you re not why should it be that it s perfectly legitimate to support the republicans or democrats this model of economics versus that macintosh instead of windows but to have an opinion about how the universe began about who created the universe no that s holy so we re used to not challenging religious ideas and it s very interesting how much of a furor richard creates when he does it he meant me not that one everybody gets absolutely frantic about it because you re not allowed to say these things yet when you look at it rationally there is no reason why those ideas should n t be as open to debate as any other except that we ve agreed somehow between us that they should n t be and that s the end of the quote from douglas in my view not only is science corrosive to religion religion is corrosive to science it teaches people to be satisfied with trivial supernatural non explanations and blinds them to the wonderful real explanations that we have within our grasp it teaches them to accept authority revelation and faith instead of always insisting on evidence there s douglas adams magnificent picture from his book last chance to see now there s a typical scientific journal the quarterly review of biology and i m going to put together as guest editor a special issue on the question did an asteroid kill the dinosaurs and the first paper is a standard scientific paper presenting evidence iridium layer at the k t boundary potassium argon dated crater in yucatan indicate that an asteroid killed the dinosaurs perfectly ordinary scientific paper now the next one the president of the royal society has been vouchsafed a strong inner conviction that an asteroid killed the dinosaurs it has been privately revealed to professor huxtane that an asteroid killed the dinosaurs professor hordley was brought up to have total and unquestioning faith that an asteroid killed the dinosaurs professor hawkins has promulgated an official dogma binding on all loyal hawkinsians that an asteroid killed the dinosaurs that s inconceivable of course but suppose in 1987 a reporter asked george bush sr whether he recognized the equal citizenship and patriotism of americans who are atheists mr bush s reply has become infamous no i do n t know that atheists should be considered citizens nor should they be considered patriots this is one nation under god bush s bigotry was not an isolated mistake blurted out in the heat of the moment and later retracted he stood by it in the face of repeated calls for clarification or withdrawal he really meant it more to the point he knew it posed no threat to his election quite the contrary democrats as well as republicans parade their religiousness if they want to get elected both parties invoke one nation under god incidentally i m not usually very proud of being british but you ca n t help making the comparison in practice what is an atheist an atheist is just somebody who feels about yahweh the way any decent christian feels about thor or baal or the golden calf as has been said before we are all atheists about most of the gods that humanity has ever believed in some of us just go one god further and however we define atheism it s surely the kind of academic belief that a person is entitled to hold without being vilified as an unpatriotic unelectable non citizen nevertheless it s an undeniable fact that to own up to being an atheist is tantamount to introducing yourself as mr hitler or miss beelzebub and that all stems from the perception of atheists as some kind of weird way out minority natalie angier wrote a rather sad piece in the new yorker saying how lonely she felt as an atheist she clearly feels in a beleaguered minority but actually how do american atheists stack up numerically the latest survey makes surprisingly encouraging reading christianity of course takes a massive lion s share of the population with nearly 160 million but what would you think was the second largest group convincingly outnumbering jews with 2 8 million muslims at 1 1 million and hindus buddhists and all other religions put together the second largest group of nearly 30 million is the one described as non religious or secular you ca n t help wondering why vote seeking politicians are so proverbially overawed by the power of for example the jewish lobby the state of israel seems to owe its very existence to the american jewish vote while at the same time consigning the non religious to political oblivion this secular non religious vote if properly mobilized is nine times as numerous as the jewish vote why does this far more substantial minority not make a move to exercise its political muscle well so much for quantity how about quality is there any correlation positive or negative between intelligence and tendency to be religious the survey that i quoted which is the aris survey did n t break down its data by socio economic class or education iq or anything else but a recent article by paul g bell in the mensa magazine provides some straws in the wind mensa as you know is an international organization for people with very high iq and from a meta analysis of the literature bell concludes that i quote of 43 studies carried out since 1927 on the relationship between religious belief and one s intelligence or educational level all but four found an inverse connection that is the higher one s intelligence or educational level the less one is likely to be religious well i have n t seen the original 42 studies and i ca n t comment on that meta anaysis but i would like to see more studies done along those lines and i know that there are if i could put a little plug here there are people in this audience easily capable of financing a massive research survey to settle the question and i put the suggestion up for what it s worth but let me know show you some data that have been properly published and analyzed on one special group namely top scientists in 1998 larson and witham polled the cream of american scientists those who d been honored by election to the national academy of sciences and among this select group belief in a personal god dropped to a shattering seven percent about 20 percent are agnostic and the rest could fairly be called atheists similar figures obtained for belief in personal immortality among biological scientists the figures are even lower 5 5 percent only believe in god physical scientists it s 7 5 percent i ve not seen corresponding figures for elite scholars in other fields such history or philosophy but i d be surprised if they were different so we ve reached a truly remarkable situation a grotesque mismatch between the american intelligentsia and the american electorate a philosophical opinion about the nature of the universe which is held by the vast majority of top american scientists and probably the majority of the intelligentsia generally is so abhorrent to the american electorate that no candidate for popular election dare affirm it in public if i m right this means that high office in the greatest country in the world is barred to the very people best qualified to hold it the intelligentsia unless they are prepared to lie about their beliefs to put it bluntly american political opportunities are heavily loaded against those who are simultaneously intelligent and honest i m not a citizen of this country so i hope it wo n t be thought unbecoming if i suggest that something needs to be done and i ve already hinted what that something is from what i ve seen of ted i think this may be the ideal place to launch it again i fear it will cost money we need a consciousness raising coming out campaign for american atheists this could be similar to the campaign organized by homosexuals a few years ago although heaven forbid that we should stoop to public outing of people against their will in most cases people who out themselves will help to destroy the myth that there is something wrong with atheists on the contrary they ll demonstrate that atheists are often the kinds of people that could serve as decent role models for your children the kinds of people an advertising agent could use to recommend a product the kinds of people who are sitting in this room there should be a snowball effect a positive feedback such that the more names we have the more we get there could be non linearities threshold effects when a critical mass has been attained there s an abrupt acceleration in recruitment and again it will need money i suspect that the word atheist itself contains or remains a stumbling block far out of proportion to what it actually means and a stumbling block to people who otherwise might be happy to out themselves so what other words might be used to smooth the path oil the wheels sugar the pill darwin himself preferred agnostic and not only out of loyalty to his friend huxley who coined the term darwin said i have never been an atheist in the same sense of denying the existence of a god i think that generally an agnostic would be the most correct description of my state of mind he even became uncharacteristically tetchy with edward aveling aveling was a militant atheist who failed to persuade darwin to accept the dedication of his book on atheism incidentally giving rise to a fascinating myth that karl marx tried to dedicate das kapital to darwin which he did n t it was actually edward aveling what happened was that aveling s mistress was marx s daughter and when both darwin and marx were dead marx s papers became muddled up with aveling s papers and a letter from darwin saying my dear sir thank you very much but i do n t want you to dedicate your book to me was mistakenly supposed to be addressed to marx and that gave rise to this whole myth which you ve probably heard it s a sort of urban myth that marx tried to dedicate kapital to darwin anyway it was aveling and when they met darwin challenged aveling why do you call yourselves atheists agnostic retorted aveling was simply atheist writ respectable and atheist was simply agnostic writ aggressive darwin complained but why should you be so aggressive darwin thought that atheism might be well and good for the intelligentsia but that ordinary people were not quote ripe for it which is of course our old friend the do n t rock the boat argument it s not recorded whether aveling told darwin to come down off his high horse but in any case that was more than 100 years ago you think we might have grown up since then now a friend an intelligent lapsed jew who incidentally observed the sabbath for reasons of cultural solidarity describes himself as a tooth fairy agnostic he wo n t call himself an atheist because it s in principle impossible to prove a negative but agnostic on its own might suggest that god s existence was therefore on equal terms of likelihood as his non existence so my friend is strictly agnostic about the tooth fairy but it is n t very likely is it like god hence the phrase tooth fairy agnostic bertrand russell made the same point using a hypothetical teapot in orbit about mars you would strictly have to be agnostic about whether there is a teapot in orbit about mars but that does n t mean you treat the likelihood of its existence as on all fours with its non existence the list of things which we strictly have to be agnostic about does n t stop at tooth fairies and teapots it s infinite if you want to believe one particular one of them unicorns or tooth fairies or teapots or yahweh the onus is on you to say why the onus is not on the rest of us to say why not we who are atheists are also a fairiests and a teapotists but we do n t bother to say so and this is why my friend uses tooth fairy agnostic as a label for what most people would call atheist nonetheless if we want to attract deep down atheists to come out publicly we re going to have find something better to stick on our banner than tooth fairy or teapot agnostic so how about humanist this has the advantage of a worldwide network of well organized associations and journals and things already in place my problem with it only is its apparent anthropocentrism one of the things we ve learned from darwin is that the human species is only one among millions of cousins some close some distant and there are other possibilities like naturalist but that also has problems of confusion because darwin would have thought naturalist naturalist means of course as opposed to supernaturalist and it is used sometimes darwin would have been confused by the other sense of naturalist which he was of course and i suppose there might be others who would confuse it with nudism such people might be those belonging to the british lynch mob which last year attacked a pediatrician in mistake for a pedophile i think the best of the available alternatives for atheist is simply non theist it lacks the strong connotation that there s definitely no god and it could therefore easily be embraced by teapot or tooth fairy agnostics it s completely compatible with the god of the physicists when atheists like stephen hawking and albert einstein use the word god they use it of course as a metaphorical shorthand for that deep mysterious part of physics which we do n t yet understand non theist will do for all that yet unlike atheist it does n t have the same phobic hysterical responses but i think actually the alternative is to grasp the nettle of the word atheism itself precisely because it is a taboo word carrying frissons of hysterical phobia critical mass may be harder to achieve with the word atheist than with the word non theist or some other non confrontational word but if we did achieve it with that dread word atheist itself the political impact would be even greater now i said that if i were religious i d be very afraid of evolution i d go further i would fear science in general if properly understood and this is because the scientific worldview is so much more exciting more poetic more filled with sheer wonder than anything in the poverty stricken arsenals of the religious imagination as carl sagan another recently dead hero put it how is it that hardly any major religion has looked at science and concluded this is better than we thought the universe is much bigger than our prophet said grander more subtle more elegant instead they say no no no my god is a little god and i want him to stay that way a religion old or new that stressed the magnificence of the universe as revealed by modern science might be able to draw forth reserves of reverence and awe hardly tapped by the conventional faiths now this is an elite audience and i would therefore expect about 10 percent of you to be religious many of you probably subscribe to our polite cultural belief that we should respect religion but i also suspect that a fair number of those secretly despise religion as much as i do if you re one of them and of course many of you may not be but if you are one of them i m asking you to stop being polite come out and say so and if you happen to be rich give some thought to ways in which you might make a difference the religious lobby in this country is massively financed by foundations to say nothing of all the tax benefits by foundations such as the templeton foundation and the discovery institute we need an anti templeton to step forward if my books sold as well as stephen hawking s books instead of only as well as richard dawkins books i d do it myself people are always going on about how did september the 11th change you well here s how it changed me let s all stop being so damned respectful thank you very much
|
990f29e9a26349eddbcc5111c01b2b1170421577
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1529/CH23/EX23.6/23_06.sce
|
7c73cd3aeedb545bae1413c8413ca2caf5226fa3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 320
|
sce
|
23_06.sce
|
//Chapter 23, Problem 6
clc;
f=50; //supply frequency
nr=1200/60; //rotor speed
s=4; //slip
ns=(nr/(1-(s/100))); //synchronous speed
printf("synchronous speed = %d rev/min",ns*60);
|
63c89470ee718360ad32943be51a0eb408db8b0a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2231/CH4/EX4.8/Ex_4_8.sce
|
db59fe24357647ba3729ec45c9d986648d258bd5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 377
|
sce
|
Ex_4_8.sce
|
//Example 4_8
clc;
clear;close;
//Given data:
Ra=0.5;//ohm
L=16/1000;//H
V=200;//V
E=100;//V
Imin=10;//A
t_off=2/1000;//s
//Solution :
i=(V-E)/Ra*[1-exp(-Ra*t_off/L)]+Imin*exp(-Ra*t_off/L);//A
disp(i,"Current at instant of turn off(A)");
t=5/1000;//s
i_dash=i*exp(-Ra*t/L);//A
disp(i_dash,"Current 5 ms after turn off(A)");
//Answer is wrong in the book.
|
f134551f3161b44dc345669677304c16b1e5f5f5
|
e0197fcfd617703d698031b6b63b9d2bb71de120
|
/test/Data/haar_separate.tst
|
d650b7c417ccdb1e9526f75d70cc2a3fc4fa9799
|
[] |
no_license
|
smurphy8/wavelets
|
daab2317301a99b14f9dc02164265faba4972fa3
|
353e3f43de33b992ef78cf7ce49655f763546d08
|
refs/heads/master
| 2021-01-01T17:48:01.435770
| 2014-03-18T15:51:15
| 2014-03-18T15:51:15
| 15,212,497
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 20,697
|
tst
|
haar_separate.tst
|
[[-4.442678308949565e-3,-4.44180136228133e-3,-4.440223003697032e-3,-4.437943482407662e-3,-4.434963158396137e-3,-4.431282502295207e-3,-4.426902095423575e-3,-4.42182262917179e-3,-4.416044906008082e-3,-4.409569838101049e-3,-4.402398448049377e-3,-4.394531868208387e-3,-4.385971341063402e-3,-4.376718217878314e-3,-4.366773960290726e-3,-4.356140138353087e-3,-4.344818431690933e-3,-4.332810627510175e-3,-4.320118622444441e-3,-4.306744420607994e-3,-4.292690133902155e-3,-4.2779579812797786e-3,-4.262550290023093e-3,-4.246469492662497e-3,-4.229718128260895e-3,-4.2122988426159524e-3,-4.194214385469769e-3,-4.1754676142561065e-3,-4.156061487378182e-3,-4.135999070775331e-3,-4.115283531691771e-3,-4.093918141954422e-3,-4.07190627480275e-3,-4.049251406728627e-3,-4.0259571145550566e-3,-4.002027077444459e-3,-3.977465073584097e-3,-3.952274981478376e-3,-3.92646078034159e-3,-3.9000265448875804e-3,-3.8729764500313735e-3,-3.845314767939867e-3,-3.817045865105617e-3,-3.7881742068021085e-3,-3.7587043525204034e-3,-3.728640953963136e-3,-3.6979887611418016e-3,-3.666752612222768e-3,-3.6349374406401957e-3,-3.602548270941086e-3,-3.5695902164650795e-3,-3.5360684823942945e-3,-3.5019883619576975e-3,-3.467355237042835e-3,-3.432174577264524e-3,-3.3964519365295986e-3,-3.3601929560982957e-3,-3.3234033641758587e-3,-3.2860889664066417e-3,-3.2482556577390076e-3,-3.209909412491274e-3,-3.1710562846936075e-3,-3.131702410429038e-3,-3.0918540038890052e-3,-3.051517357840039e-3,-3.010698843112114e-3,-2.9694049022064295e-3,-2.927642058567881e-3,-2.8854169067921154e-3,-2.842736113032207e-3,-2.7996064196523784e-3,-2.756034635160831e-3,-2.7120276409318134e-3,-2.6675923867425233e-3,-2.6227358875055007e-3,-2.5774652285111e-3,-2.531787559164167e-3,-2.4857100892828887e-3,-2.4392400976867012e-3,-2.3923849222847737e-3,-2.3451519603644444e-3,-2.29754867240628e-3,-2.2495825756828625e-3,-2.2012612441139057e-3,-2.152592306108425e-3,-2.103583448823998e-3,-2.0542424126137604e-3,-2.0045769864264207e-3,-1.954595016224303e-3,-1.9043043928109737e-3,-1.8537130550859704e-3,-1.8028289945808407e-3,-1.7516602490504907e-3,-1.7002148960607588e-3,-1.64850105685721e-3,-1.5965269027987672e-3,-1.544300636062701e-3,-1.491830507640013e-3,-1.4391248033330806e-3,-1.3861918429289855e-3,-1.3330399882105493e-3,-1.2796776284528244e-3,-1.2261131927628899e-3,-1.1723551436051416e-3,-1.1184119630861522e-3,-1.0642921712274989e-3,-1.0100043178700169e-3,-9.555569705497202e-4,-9.009587309927181e-4,-8.462182221797843e-4,-7.913440818414497e-4,-7.363449816714107e-4,-6.812296015203945e-4,-6.260066473182668e-4,-5.706848434285927e-4,-5.152729188925287e-4,-4.597796256641251e-4,-4.042137304748339e-4,-3.485840026794529e-4,-2.9289923071496027e-4,-2.3716820913877168e-4,-1.8139973209441163e-4,-1.2560261250171845e-4,-6.978565622839383e-5,-1.3957679990461713e-5,4.187249518228242e-5,9.769606334730785e-5,1.5350420417148403e-4,2.0928810233011852e-4,2.6503895404383915e-4,3.2074795030134773e-4,3.764062970608162e-4,4.320052073141234e-4,4.875358963651877e-4,5.42989600418875e-4,5.983575586732126e-4,6.536310270819357e-4,7.088012832722201e-4,7.638596115229213e-4,8.187973149141881e-4,8.73605723290094e-4,9.282761753369728e-4,9.82800044387e-4,1.0371687192032297e-3,1.0913736104831706e-3,1.1454061637911073e-3,1.1992578427409972e-3,1.2529201427243786e-3,1.3063845957907994e-3,1.3596427555856438e-3,1.4126862094556714e-3,1.4655065863694583e-3,1.518095538946329e-3,1.570444769211532e-3,1.6225460093288735e-3,1.674391028050004e-3,1.7259716435900074e-3,1.7772797056273548e-3,1.8283071145963614e-3,1.8790458152497802e-3,1.929487792786344e-3,1.9796250792614156e-3,2.0294497625603647e-3,2.078953969804398e-3,2.1281298872423138e-3,2.17696974669368e-3,2.225465837706997e-3,2.273610504438528e-3,2.3213961417153373e-3,2.3688152010580277e-3,2.4158601995932782e-3,2.462523703546826e-3,2.5087983461395957e-3,2.5546768216772042e-3,2.60015188541618e-3,2.6452163550305663e-3,2.6898631088523306e-3,2.7340851075737804e-3,2.7778753599895234e-3,2.8212269562563064e-3,2.864133048082307e-3,2.906586857846838e-3,2.948581683531293e-3,2.990110896559428e-3,3.0311679338420605e-3,3.0717463171425763e-3,3.1118396331971665e-3,3.1514415540211393e-3,3.190545828263447e-3,3.229146278334094e-3,3.267236806201279e-3,3.3048114020746144e-3,3.3418641276664607e-3,3.3783891338508565e-3,3.414380655800242e-3,3.449833004891323e-3,3.484740587931523e-3,3.519097887143219e-3,3.5528994803254443e-3,3.5861400320650327e-3,3.6188142881498075e-3,3.650917094080497e-3,3.68244337787893e-3,3.7133881589291318e-3,3.7437465526216074e-3,3.7735137679063002e-3,3.802685099051295e-3,3.831255941816214e-3,3.8592217877476687e-3,3.8865782152492923e-3,3.913320909568807e-3,3.93944564515164e-3,3.964948294027826e-3,3.989824831926947e-3,4.014071332484437e-3,4.03768396207399e-3,4.0606589971324825e-3,4.082992804490093e-3,4.1046818596314205e-3,4.125722740818127e-3,4.146112119984335e-3,4.165846782556243e-3,4.184923607057328e-3,4.203339586179411e-3,4.221091807003613e-3,4.238177470750615e-3,4.254593874571805e-3,4.270338431272308e-3,4.285408649459421e-3,4.299802151621096e-3,4.313516668072143e-3,4.326550027665466e-3,4.338900177426358e-3,4.350565164551623e-3,4.361543144432378e-3,4.3718323864110065e-3,4.3814312676275086e-3,4.390338267483987e-3,4.3985519846056476e-3,4.406071116807561e-3,4.412894478982701e-3,4.419020996856746e-3,4.424449697516597e-3,4.4291797288521575e-3,4.4332103387910785e-3,4.436540893747745e-3,4.439170869718751e-3,4.441099849148495e-3,4.442327524857495e-3,4.442853708126203e-3,4.442678307824917e-3,4.441801362583922e-3,4.440223005417132e-3,4.437943482992306e-3,4.434963160418082e-3,4.431282505749701e-3,4.426902095380908e-3,4.421822630676933e-3,4.4160449089206966e-3,4.4095698399083255e-3,4.402398451273853e-3,4.394531867424431e-3,4.385971341515485e-3,4.376718219888276e-3,4.3667739611457645e-3,4.3561401407455624e-3,4.344818432747283e-3,4.3328106278735234e-3,4.320118624224656e-3,4.306744423765191e-3,4.292690135864252e-3,4.277957982106756e-3,4.262550289513917e-3,4.246469493389887e-3,4.229718130505822e-3,4.21229884352467e-3,4.194214388298423e-3,4.175467615748052e-3,4.156061488136853e-3,4.13599907281087e-3,4.115283535285008e-3,4.09391814421145e-3,4.07190627568399e-3,4.04925140627338e-3,4.02595711569792e-3,4.002027079824111e-3,3.977465074908593e-3,3.952274984722448e-3,3.926460779677121e-3,3.9000265457805883e-3,3.872976452482413e-3,3.8453147713060076e-3,3.817045867778368e-3,3.7881742081389835e-3,3.7587043522000485e-3,3.7286409558432987e-3,3.697988763856297e-3,3.666752614003288e-3,3.634937443978359e-3,3.602548272943207e-3,3.569590217452734e-3,3.5360684848591006e-3,3.5019883660607487e-3,3.4673552401315866e-3,3.4321745782937008e-3,3.3964519366246337e-3,3.36019295839457e-3,3.3234033667433605e-3,3.286088968602774e-3,3.248255659242194e-3,3.2099094123365646e-3,3.1710562860968183e-3,3.1317024133097338e-3,3.091854008407835e-3,3.0515173584505506e-3,3.0106988439945193e-3,2.969404902717465e-3,2.9276420605561793e-3,2.8854169097757287e-3,2.84273611564434e-3,2.7996064208479776e-3,2.7560346379943423e-3,2.7120276427508028e-3,2.6675923894763365e-3,2.622735892440109e-3,2.5774652324310754e-3,2.5317875582110405e-3,2.485710093103166e-3,2.43924009783969e-3,2.39238492857774e-3,2.345151963713321e-3,2.2975486740980378e-3,2.249582576198783e-3,2.201261244419772e-3,2.152592309257906e-3,2.1035834535317877e-3,2.054242416306362e-3,2.004576987175266e-3,1.954595019817318e-3,1.9043043915306646e-3,1.8537130617949371e-3,1.8028289964164834e-3,1.7516602505148748e-3,1.7002148984396337e-3,1.6485010588648263e-3,1.5965269057212073e-3,1.5443006386136604e-3,1.4918305098192697e-3,1.4391248030508619e-3,1.386191844365392e-3,1.3330399899187384e-3,1.2796776330048498e-3,1.2261131950143112e-3,1.1723551440384616e-3,1.1184119658809166e-3,1.0642921762236135e-3,1.0100043186355157e-3,9.555569690145038e-4,9.009587361600291e-4,8.46218221187911e-4,7.913440888385193e-4,7.363449786504939e-4,6.812296058456013e-4,6.260066499853556e-4,5.706848442773582e-4,5.152729221031827e-4,4.5977962593068966e-4,4.042137368011067e-4,3.48584001560015e-4,2.9289923629827186e-4,2.3716820856256593e-4,1.8139973950725974e-4,1.2560261504135362e-4,6.978565582405061e-5,1.395768307344003e-5,-4.1872495043171476e-5,-9.76960597210974e-5,-1.5350419834425644e-4,-2.0928810073295168e-4,-2.6503894960250296e-4,-3.207479457492113e-4,-3.764062972211324e-4,-4.320051994856078e-4,-4.875358985546585e-4,-5.429895952624442e-4,-5.983575566214094e-4,-6.536310265270462e-4,-7.088012792301202e-4,-7.638596104250217e-4,-8.187973077564692e-4,-8.736057235780859e-4,-9.282761714943799e-4,-9.828000441314266e-4,-1.037168716103709e-3,-1.0913736071120894e-3,-1.1454061633638934e-3,-1.1992578402731935e-3,-1.2529201417539326e-3,-1.3063845913329208e-3,-1.3596427489269702e-3,-1.4126862070269475e-3,-1.4655065862416716e-3,-1.5180955346879577e-3,-1.5704447685401801e-3,-1.6225460006686898e-3,-1.6743910294078068e-3,-1.7259716376022416e-3,-1.7772797038693167e-3,-1.828307113209915e-3,-1.8790458103761232e-3,-1.9294877908571095e-3,-1.9796250712719177e-3,-2.0294497620166885e-3,-2.0789539636832943e-3,-2.1281298847081187e-3,-2.176969744852819e-3,-2.2254658349510903e-3,-2.273610504627044e-3,-2.3213961384157544e-3,-2.3688151981307026e-3,-2.4158601931781876e-3,-2.46252370168365e-3,-2.50879834400497e-3,-2.5546768179844914e-3,-2.6001518788791866e-3,-2.6452163507943993e-3,-2.6898631078821067e-3,-2.7340851082606754e-3,-2.7778753559035696e-3,-2.8212269538274715e-3,-2.864133043452677e-3,-2.9065868519808635e-3,-2.9485816825386424e-3,-2.990110887577724e-3,-3.0311679348786758e-3,-3.0717463101898046e-3,-3.1118396314389063e-3,-3.151441557779855e-3,-3.19054582338979e-3,-3.229146276404582e-3,-3.2672368033566657e-3,-3.304811397029539e-3,-3.3418641213844302e-3,-3.378389132442483e-3,-3.414380651547755e-3,-3.4498330055120485e-3,-3.4847405805632503e-3,-3.5190978849693466e-3,-3.552899478523497e-3,-3.586140031920426e-3,-3.618814283232352e-3,-3.6509170908198274e-3,-3.6824433724180206e-3,-3.7133881522318224e-3,-3.7437465559419514e-3,-3.77351375809315e-3,-3.8026850992563532e-3,-3.8312559369256816e-3,-3.85922178515824e-3,-3.886578213031844e-3,-3.913320903863204e-3,-3.939445642390793e-3,-3.964948290351655e-3,-3.989824828301347e-3,-4.014071325371293e-3,-4.037683959834004e-3,-4.060658992048161e-3,-4.082992799134377e-3,-4.104681854325387e-3,-4.125722737812532e-3,-4.146112117351108e-3,-4.165846781580135e-3,-4.184923601307955e-3,-4.203339582087434e-3,-4.221091802962457e-3,-4.2381774632213876e-3,-4.254593871916096e-3,-4.2703384206276285e-3,-4.285408648832534e-3,-4.299802145899256e-3,-4.313516664651046e-3,-4.3265500297610116e-3,-4.338900170889504e-3,-4.350565160959274e-3,-4.361543139924401e-3,-4.371832386455263e-3,-4.381431259682822e-3,-4.390338264412236e-3,-4.398551978690088e-3,-4.406071115765242e-3,-4.412894478633356e-3,-4.419020993019898e-3,-4.424449694051806e-3,-4.429179727044125e-3,-4.433210332210551e-3,-4.436540891075466e-3,-4.439170869346948e-3,-4.441099840788037e-3,-4.442327526515131e-3,-4.4428536966496755e-3],[1.332838571939298e-2,3.109752043738498e-2,4.886174449643617e-2,6.661825271954777e-2,8.436424114837204e-2,0.10209690748553266,0.1198134515373509,0.1375110756563101,0.1551869851823643,0.1728383888845339,0.1904624994012613,0.20805653368182386,0.22561771342362918,0.2431432655130012,0.26063042246200185,0.2780764228461329,0.2954785117395525,0.3128339411506325,0.33013997045577814,0.3473938668328064,0.3645929056911443,0.3817343711028368,0.39881555623200643,0.4158337637622735,0.43278630632038273,0.44967050690406785,0.4664836993012835,0.4832232285150907,0.4998864511796954,0.516470735978148,0.5329734640606328,0.5493920294543966,0.5657238394788793,0.5819663151501051,0.5981168915940827,0.6141730184470049,0.6301321602615194,0.6459917969022402,0.6617494239500175,0.6774025530925105,0.69294871251909,0.7083854473112075,0.7237103198288473,0.7389209100977914,0.7540148161899922,0.7689896546004524,0.7838430606314071,0.7985726887558477,0.8131762129953053,0.827651327283611,0.8419957458333821,0.8562072034955287,0.8702834561122018,0.884222280883715,0.8980214767075703,0.9116788645294149,0.9251922876893104,0.9385596122626141,0.9517787273934959,0.9648475456293099,0.9777640032523194,0.9905260606050974,1.0031317024117303,1.0155789380913083,1.027865802084803,1.039990354152911,1.0519506796886298,1.0637448900168636,1.0753711226949991,1.0868275418079691,1.0981123382532636,1.1092237300286967,1.1201599625198344,1.130919308768388,1.1415000697466076,1.1519005746317685,1.1621191810631009,1.1721542754045124,1.1820042729972318,1.1916676184123736,1.2011427856975243,1.2104282786120812,1.2195226308705198,1.22842440636646,1.237132199410056,1.2456446349367871,1.2539603687369774,1.2620780876572883,1.2699965098180492,1.2777143848073216,1.285230493883498,1.2925436501658254,1.29965269882215,1.3065565172516005,1.3132540152605716,1.3197441352368093,1.3260258523151338,1.3320981745408846,1.337960143021578,1.3436108320842763,1.349049349422083,1.3542748362289396,1.3592864673399037,1.364083451361773,1.368665030791143,1.3730304821472084,1.3771791160734679,1.3811102774525328,1.3848233455097358,1.3883177339050508,1.3915928908372568,1.394648299120143,1.3974834762693222,1.4000979745774558,1.4024913811864002,1.4046633181454866,1.4066134424843901,1.4083414462547443,1.4098470565847232,1.411130035722288,1.4121901810666229,1.4130273252117043,1.413641335961802,1.4140321163575014,1.4141996046900474,1.4141437745114123,1.4138646346371857,1.4133622291471108,1.4126366373768389,1.4116879739057215,1.4105163885414518,1.4091220662830621,1.4075052273177564,1.4056661269607391,1.4036050556272759,1.40132233878587,1.3988183368999536,1.3960934453841496,1.393148094529291,1.3899827494404207,1.3865979099622225,1.3829941106016963,1.3791719204360355,1.3751319430375564,1.370874816364236,1.3664012126657266,1.3617118383773592,1.356807434001675,1.3516887740046764,1.3463566666809892,1.3408119540321715,1.3350555116326266,1.329088248492948,1.3229111069086592,1.3165250623262033,1.3099311231747635,1.303130330713771,1.2961237588675139,1.288912514054267,1.2814977350135028,1.2738805926247871,1.2660622897232037,1.258044060909413,1.249827172354856,1.2414129215998808,1.23280263735785,1.2239976792853848,1.2149994377903293,1.2058093337993268,1.196428818536332,1.1868593732934474,1.177102509194759,1.167159766966714,1.1570327166826058,1.1467229575184983,1.1362321175061645,1.1255618532711769,1.1147138497713094,1.1036898200349627,1.092491504879082,1.0811206726500178,1.0695791189317432,1.057868666271313,1.045991163887848,1.0339484873766631,1.0217425384108378,1.0093752444566757,0.9968485584448991,0.9841644584924811,0.971324947563271,0.9583320531674568,0.9451878270285378,0.9318943447725153,0.91845370559627,0.9048680319354296,0.8911394691253558,0.8772701850601183,0.8632623698659143,0.8491182355307882,0.8348400155855534,0.8204299647266571,0.8058903584630327,0.7912234927696299,0.776431683712314,0.7615172670911372,0.7464825980682706,0.7313300507922398,0.7160620180236634,0.7006809107586935,0.6851891578527917,0.6695892056384727,0.6538835175264592,0.638074573629542,0.6221648703558307,0.6061569200389771,0.5900532505150828,0.5738564047453901,0.5575689403996056,0.5411934294549087,0.5247324577910945,0.5081886247867313,0.49156454290997686,0.4748628372960728,0.45808614533280284,0.4412371162546306,0.4243184107230702,0.40733270039302905,0.3902826675102171,0.3731710044724773,0.356000413407517,0.33877360574749815,0.3214933018053718,0.3041622303465942,0.28678312814568396,0.2693587395669167,0.251891816115843,0.23438511602923273,0.21684140381315087,0.19926344982827354,0.18165402983730472,0.16401592456954578,0.14635191928307106,0.1286648033294038,0.11095736971433381,9.323241464689963e-2,7.549273709558461e-2,5.7741138368194084e-2,3.9980421645698636e-2,2.221339154858476e-2,4.442853702011802e-3,-1.3328385717198282e-2,-3.1097520435262156e-2,-4.8861744494354764e-2,-6.661825272014049e-2,-8.436424114898643e-2,-0.10209690748617338,-0.11981345153780223,-0.1375110756568333,-0.15518698518293897,-0.17283838888767217,-0.1904624994046222,-0.20805653367953897,-0.2256177134213857,-0.24314326551083965,-0.26063042246263507,-0.27807642284682765,-0.29547851173771644,-0.3128339411511294,-0.3301399704564973,-0.34739386683342655,-0.3645929056942376,-0.3817343711032789,-0.39881555623023934,-0.4158337637602262,-0.43278630631841714,-0.4496705069043948,-0.4664836993020136,-0.48322322851811345,-0.49988645117990604,-0.5164707359787619,-0.5329734640612881,-0.5493920294579875,-0.5657238394790151,-0.5819663151480314,-0.5981168915920907,-0.6141730184453762,-0.6301321602619017,-0.645991796903026,-0.6617494239505233,-0.6774025530930576,-0.6929487125197594,-0.7083854473118377,-0.7237103198324935,-0.7389209100986662,-0.7540148161876122,-0.7689896545988375,-0.7838430606291906,-0.7985726887562453,-0.8131762129958248,-0.8276513272869859,-0.8419957458343066,-0.8562072034952082,-0.8702834561132095,-0.8842222808874167,-0.8980214767077765,-0.9116788645270905,-0.9251922876877507,-0.9385596122610158,-0.9517787273939486,-0.9648475456321359,-0.977764003253177,-0.9905260606060774,-1.0031317024114654,-1.015578938092371,-1.0278658020856666,-1.0399903541537356,-1.0519506796863607,-1.0637448900146362,-1.0753711226934564,-1.0868275418084776,-1.0981123382554216,-1.1092237300321823,-1.1201599625208696,-1.1309193087687415,-1.141500069747726,-1.1519005746355815,-1.162119181066232,-1.1721542754051923,-1.182004272997311,-1.19166761841378,-1.2011427856977663,-1.2104282786098737,-1.2195226308702025,-1.228424406362245,-1.237132199410465,-1.245644634932816,-1.2539603687402026,-1.2620780876606357,-1.2699965098192671,-1.2777143848080184,-1.28523049388496,-1.2925436501693388,-1.2996526988206405,-1.3065565172550366,-1.3132540152564118,-1.3197441352379164,-1.3260258523137907,-1.3320981745409495,-1.3379601430235337,-1.3436108320881224,-1.3490493494254079,-1.3542748362330292,-1.3592864673383276,-1.364083451358872,-1.3686650307894894,-1.3730304821456767,-1.3771791160772033,-1.381110277450602,-1.3848233455124288,-1.3883177339030424,-1.3915928908411581,-1.3946482991235234,-1.3974834762676795,-1.40009797458108,-1.4024913811784097,-1.4046633181490336,-1.4066134424829138,-1.408341446258535,-1.4098470565879928,-1.4111300357198915,-1.412190181069815,-1.4130273252105163,-1.413641335965238,-1.4140321163559142,-1.4141996046885823,-1.4141437745097476,-1.413864634635643,-1.4133622291456902,-1.4126366373806851,-1.4116879739090469,-1.4105163885428087,-1.4091220662811643,-1.407505227321769,-1.4056661269642303,-1.4036050556257442,-1.401322338788158,-1.3988183368931997,-1.3960934453878076,-1.3931480945279255,-1.3899827494443222,-1.386597909965603,-1.3829941105990888,-1.3791719204393382,-1.375131943041624,-1.3708748163677824,-1.3664012126642504,-1.361711838374558,-1.3568074340001208,-1.3516887740032444,-1.3463566666796796,-1.3408119540361283,-1.3350555116309175,-1.3290882484955415,-1.3229111069068722,-1.3165250623303268,-1.3099311231783655,-1.3031303307123498,-1.2961237588710384,-1.288912514047624,-1.2814977350172714,-1.2738805926235328,-1.2660622897272162,-1.258044060912904,-1.2498271723538066,-1.2414129216047414,-1.2328026373496483,-1.2239976792875953,-1.214999437787517,-1.205809333796636,-1.1964288185337635,-1.1868593732910013,-1.177102509199187,-1.1671597669719076,-1.1570327166859917,-1.1467229575226492,-1.136232117504649,-1.1255618532694625,-1.1147138497748612,-1.1036898200309195,-1.0924915048803059,-1.0811206726410734,-1.0695791189354618,-1.057868666271938,-1.0459911638943833,-1.0339484873801044,-1.0217425384099,-1.0093752444574666,-0.9968485584432398,-0.9841644584960891,-0.9713249475618553,-0.9583320531635913,-0.9451878270247944,-0.9318943447711443,-0.918453705602095,-0.9048680319420206,-0.8911394691237072,-0.8772701850643801,-0.8632623698616164,-0.849118235529184,-0.8348400155892162,-0.8204299647227251,-0.8058903584643669,-0.7912234927607966,-0.7764316837161442,-0.7615172670970174,-0.7464825980749166,-0.731330050795792,-0.716062018019942,-0.7006809107595955,-0.6851891578460989,-0.6695892056421909,-0.6538835175251547,-0.6380745736257876,-0.6221648703544486,-0.6061569200377173,-0.5900532505210192,-0.5738564047520913,-0.5575689404032128,-0.5411934294563883,-0.5247324577869067,-0.5081886247852383,-0.4915645429137513,-0.47486283729225093,-0.4580861453342481,-0.44123711624815987,-0.4243184107270104,-0.40733270039387537,-0.39028266751697455,-0.37317100447613966,-0.35600041340390665,-0.33877360574851156,-0.3214933018039339,-0.3041622303504234,-0.28678312814449086,-0.2693587395632723,-0.25189181611907313,-0.23438511602808434,-0.2168414038191971,-0.19926344983508576,-0.18165402983587853,-0.16401592456534692,-0.1463519192789945,-0.12866480332802224,-0.11095736971821817,-9.323241464318896e-2,-7.549273709939261e-2,-5.7741138366334495e-2,-3.998042164974995e-2,-2.2213391554687364e-2,-4.442853708879171e-3]]
|
816cec7d35f6c16b56babf48cebb3a88db7e9bba
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3745/CH1/EX1.69/Ex1_69.sce
|
7b243fc9522fcc6fec42f99507acc8bfd061e1eb
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,016
|
sce
|
Ex1_69.sce
|
// Ex 69 Page 409
clc;clear;close;
// Given
Rab=6;Rbc=8;Rca=4;//ohm
Vab=100*expm(%i*0);//V
Vbc=100*expm(%i*-120*%pi/180);//V
Vca=100*expm(%i*120*%pi/180);//V
Zab=6+%i*8;//ohm
Zbc=8+%i*6;//ohm
Zca=4-%i*3;//ohm
//Phase current
Iab=Vab/Zab;//A
Ibc=Vbc/Zbc;//A
Ica=Vca/Zca;//A
printf("Phase Current:")
[r,t]=polar(Iab)
printf("\n Iab=%.f angle=%.2f degree ",r,t*180/%pi)
[r,t]=polar(Ibc)
printf("\n Ibc=%.f angle=%.2f degree ",r,t*180/%pi)
[r,t]=polar(Ica)
printf("\n Ica=%.f angle=%.2f degree ",r,t*180/%pi)
//Line current
Iaa=Iab-Ica;//A
Ibb=Ibc-Iab;//A
Icc=Ica-Ibc;//A
printf("\n\n Line Current:")
[r,t]=polar(Iaa)
printf("\n Iaa=%.1f angle=%.2f degree ",r,t*180/%pi)
[r,t]=polar(Ibb)
printf("\n Ibb=%.2f angle=%.2f degree ",r,t*180/%pi)
[r,t]=polar(Icc)
printf("\n Icc=%.2f angle=%.2f degree ",r,t*180/%pi)
//Power Consumed
Wab=abs(Iab)^2*Rab;//W
Wbc=abs(Ibc)^2*Rbc;//W
Wca=abs(Ica)^2*Rca;//W
W=Wab+Wbc+Wca;//W
W=W/1000;//kW
printf("\n\n Total Power, W=%.f kW",W)
//Answer wrong for line current in the textbook.
|
d43e72bf5ef3723f8592a25065a77d67b94bfc6f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3472/CH14/EX14.1/Example14_1.sce
|
8f06c32ef5b4a1850389b7af6b46e219df3220b9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 853
|
sce
|
Example14_1.sce
|
// A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 7: UNDERGROUND CABLES
// EXAMPLE : 7.1 :
// Page number 211
clear ; clc ; close ; // Clear the work space and console
// Given data
d = 2.5 // Core diameter(cm)
t = 1.25 // Insulation thickness(cm)
rho = 4.5*10**14 // Resistivity of insulation(ohm-cm)
l = 10.0**5 // Length(cm)
// Calculations
D = d+2*t // Overall diameter(cm)
R_i = rho/(2*%pi*l)*log(D/d) // Insulation resistance(ohm)
// Results
disp("PART II - EXAMPLE : 7.1 : SOLUTION :-")
printf("\nInsulation resistance per km, R_i = %.2e ohm\n", R_i)
printf("\nNOTE: ERROR: Mistake in final answer in textbook")
|
b552c4fc405af80d48e01ba520233ff20ea47ca3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2132/CH7/EX7.1/Example7_1.sce
|
176403e5605169234cf2747d98217bf508c965aa
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 997
|
sce
|
Example7_1.sce
|
//Example 7.1
clc;
clear;
close;
format('v',9);
disp("Part(i)");
disp("Absolute unit of viscosity(in C.G.S) is Poise.");
disp("Poise=1 dyne-sec/cm^2");
disp("Gravitational unit of viscosity is 1 gm-sec/cm^2.");
disp("On equating we get, 1 gm = 981 dyne");
//Let x=1kg-sec/m^2
x=1*10^3/10^4;//g-sec/cm^2
x=x*981;//dyne-sec/cm^2 or Poise(Putting 1gm=981 dyne)
disp("1 kg-sec/m^2 = "+string(x)+" Poise");
one_Poise=1/x;//kg-sec/m^2
one_Poise=1/x*9.81;//N-sec/m^2 or Pa-sec(as 1Pa=1N/m^2)
disp("1 Poise = "+string(one_Poise)+" N-sec/m^2 or Pa-sec");
disp("Part(ii)");
disp("Kinematic viscosity = viscosity/specific_gravity");
disp("Kinematic viscosity C.G.S unit is cm^2/sec. 1cm^2/sec=1stoke");
disp("Kinematic viscosity M.K.S unit is m^2/sec");
//let x=1;//m^2/sec
x=1;//m^2/sec
x=x*10^4;//cm^2/sec or stokes
disp("1 m^2/sec = "+string(x)+" cm^2/sec or stoke");
one_stoke=1/x;//m^2/sec
disp("1 stoke = "+string(one_stoke)+" m^2/sec");
disp("1 stoke = 100 centi-stokes");
|
532fcd1f4b7ca45c235eedbb1d4ca4804ad8b594
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1898/CH14/EX14.13/Ex14_13.sce
|
dbacc100fdfa57808ac7e7f7594764a0c9871ae3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 596
|
sce
|
Ex14_13.sce
|
clear all; clc;
disp("Scilab Code Ex 14.13 : ")
//Given:
del_T = 60; //degree celcius
alpha = 12*10^-6; //per degree celcius
E = 200*10^6; //kN/m^2
A = 250*10^-6; //m^2
L = 4; //m
//Virtual Work Equation:
n = 1.155; //kN
N = -12; //kN
del_bh = (n*N*L)/(A*E) + (n*alpha*del_T*L);
del_bh = del_bh*1000;
//Display:
printf('\n\nThe horizontal displacement of joint B of the truss = %1.2f mm',del_bh);
//---------------------------------------------------------------------END--------------------------------------------------------------------------------------------
|
004cf16184111c78e5893d091536fdda0ea91908
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1709/CH5/EX5.3/5_3.sce
|
ab51f27939086244dd07a7094e6b82f45c62a563
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 157
|
sce
|
5_3.sce
|
clc
//Initialization of variables
N=6
g=8
//calculations
sig=factorial(g) /(factorial(N) *factorial(g-N))
//results
printf("No. of ways = %d ",sig)
|
dafe0ff3ed0dab65e24550975d7ee38914babba1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1682/CH7/EX7.2/Exa7_2.sce
|
c28c974fca32cee060ecf5833d46eaa84f753e7d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 663
|
sce
|
Exa7_2.sce
|
//Exa 7.2
clc;
clear;
close;
//Given data :
Io=2000000;//in Rs
ANP=350000;//in Rs
S=0;//in Rs
n=10;//in years
//Formula : (P/A,i,n)=(((1+i/100)^n)-1)/((i/100)*(1+i/100)^n)
// when i=10 %
i1=10;//in % per annum
PW1=-Io+ANP*(((1+i1/100)^n)-1)/((i1/100)*(1+i1/100)^n);//in RS
disp(PW1,"The present worth for i=10% in RS. : ");
// when i=12 %
i2=12;//in % per annum
PW2=-Io+ANP*(((1+i2/100)^n)-1)/((i2/100)*(1+i2/100)^n);//in RS
disp(PW2,"The present worth for i=15% in RS. : ");
disp("Present worth for i=10% is suitable.");
i=10+(PW1-0)*(i2-i1)/(PW1-PW2);//in Rs.
disp(i,"Therefore, the rate of return of the new product line in % per annum :");
|
b81031405d9532a2d94db985deda7d64183c94a4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3835/CH4/EX4.26/Ex4_26.sce
|
c0f3b0061f9280cd514f4e7b3c12815ccff9ff2f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 168
|
sce
|
Ex4_26.sce
|
clear
//
z1=complex(6,-10)
z2=complex(10,15)
z3=complex(18,12)
//z1+z2 is parallel to z3
zab=z1+(z2*z3)/(z2+z3)
printf("\n zab")
printf("\n the phase angle is -12.11")
|
2cbe94d1d0147eb663b9c35cda61c9dcb13a7d96
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1820/CH5/EX5.1/Example5_1.sce
|
d628dec4b2156ff869973b6354fd1d0fc1bc4906
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,141
|
sce
|
Example5_1.sce
|
// ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
// TURAN GONEN
// CRC PRESS
// SECOND EDITION
// CHAPTER : 5 : UNDERGROUND POWER TRANSMISSION AND GAS-INSULATED TRANSMISSION LINES
// EXAMPLE : 5.1 :
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
d = 2 ; // Diameter of conductor in cm
D = 5 ; // Inside diameter of lead sheath in cm
V = 24.9 ; // Line-to-neutral voltage in kV
// CALCULATIONS
// For case (a)
r = d/2 ;
R = D/2 ;
E_max = V/( r * log(R/r) ) ; // Maximum electric stress in kV/cm
E_min = V/( R * log(R/r) ) ; // Minimum electric stress in kV/cm
// For case (b)
r_1 = R/2.718 ; // Optimum conductor radius in cm . From equ 5.15
E_max1 = V/( r_1 * log(R/r_1) ) ; // Min value of max stress in kV/cm
// DISPLAY RESULTS
disp("EXAMPLE : 5.1 : SOLUTION :-") ;
printf("\n (a) Maximum value of electric stress , E_max = %.2f kV/cm \n",E_max) ;
printf("\n Minimum value of electric stress , E_min = %.2f kV/cm \n",E_min) ;
printf("\n (b) Optimum value of conductor radius , r = %.2f cm \n",r_1) ;
printf("\n Minimum value of maximum stress , E_max = %.2f kV/cm \n",E_max1) ;
|
1d47c8025e7e76c68fe3c39cfd78c5c43f279e31
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set7/s_Electronic_Devices_And_Circuits__J._Paul_2045.zip/Electronic_Devices_And_Circuits__J._Paul_2045/CH3/EX3.3/Ex3_3.sce
|
66fdc676c4024cd42af46be4c277269f1632ce3e
|
[] |
no_license
|
hohiroki/Scilab_TBC
|
cb11e171e47a6cf15dad6594726c14443b23d512
|
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
|
refs/heads/master
| 2021-01-18T02:07:29.200029
| 2016-04-29T07:01:39
| 2016-04-29T07:01:39
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 220
|
sce
|
Ex3_3.sce
|
errcatch(-1,"stop");mode(2);//example 3 pagenumber 139
v=4.3;//volt
q=4;//volt
dop=10^17;//per cubic centimetre
fi0=0.254*log(dop/(5.1*10^10));
fi01=0.407+q+0.55;
disp('fi0 = '+string(fi01));
exit();
|
be87b38b19a45595931a964c9ed429b53cdf5c60
|
e388dc46e41d78403f4e7481eb3fd52f640bd20e
|
/sy27/simu.sce
|
829c1ff5eb14d23c840421185e20fb52e895fd68
|
[] |
no_license
|
roddehugo/utc
|
4ef822c019cb4a00775bdde6b908e258cd6ac1a5
|
1f81e64c13eed562b95ed67faedca24f0e583492
|
refs/heads/master
| 2021-06-02T02:01:33.907859
| 2020-05-04T16:31:54
| 2020-05-04T16:31:54
| 58,293,385
| 3
| 2
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 869
|
sce
|
simu.sce
|
//Atelier simulation commande d'une voiture
//prise en main de Scilab
clear //on efface les variables du workspace
clc //on efface la console
close //on ferme une fenêtre
rouge=5 ;bleu=2 ;blanc=8 ;vert=3 ;noir=0 ;magenta=6 ;
exec('draw_voiture_ligne.sci');
exec('system_state.sci');
//x=(y,theta)
x=[-1;0];
v=10;
u=%pi/6;
L=2;
//définition des poles
s1=-2;
s2=-2;
//calcul des gains
a1=s1*s2;
a2=-s1-s2;
//pour les saturations
u_max=%pi/8;
u_min=-u_max;
//consigne
zd=4;
duree_simu=5; //en secondes
Te=0.02; //période
t=[0:Te:duree_simu];
n=length(t);
for k=1:n,
z=g(x);
u=(L/v^2) * (a1*(zd-z) + a2*(0-v*x(2)));
u=min(u,u_max);
u=max(u,u_min);
_x=f(x,u,v,L);
x=x + Te*_x;
drawlater();
delete(gca());
isoview(-6,6,-3,8);
draw_voiture_ligne([x;v;u],zd,noir);
drawnow();
end;
title('Terminé');
|
0103933c1e860eaeaf51680f56ae95f0b3ab2222
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/75/CH2/EX2.11/ex_11.sce
|
46476102ab30936eac82d09197b38dcead1c51c4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 515
|
sce
|
ex_11.sce
|
// EXAMPLE (PG 87)
// f(x) = (x-1.1)^3 * (x-2.1)
c = [2.7951 -8.954 10.56 -5.4 1]
p4=poly(c,'x','coeff')
roots(p4)
deff('[y]=f(x)','y=(x-1.1)^3*(x-2.1)')
xset('window',0);
x=0:.01:3; // defining the range of x.
y=feval(x,f);
a=gca();
a.y_location = "origin";
a.x_location = "origin";
plot(x,y) // instruction to plot the graph
title(' y = (x-1.1)^3*(x-2.1)')
|
94ba9b4d03b737d1ffdb8163de65601e4e1abca4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3830/CH7/EX7.18/Ex7_18.sce
|
18f2e35d290b75182378887efc81aa99606a9ec7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
Ex7_18.sce
|
// Exa 17.18
clc;
clear;
// Given
// Capacitive Transducer
d = 0.05; // plate separation in mm
C = 5*10^-12; // Capacitence in farad
dell_C = 0.75*10^-12; // change in capacitence in farad
// Solution
// C = e*A/d;
eA = C*d;
//Now,
dell_x = eA/dell_C;
printf('The displacment that caused a change in capacitence is %.3f mm \n',dell_x);
|
d75e466fe46b1d98eaebbc4f0804baa3b6a49778
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3720/CH13/EX13.9/Ex13_9.sce
|
fdcc25aa090dc7a4bceee4448170ee8d309fd1c5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 618
|
sce
|
Ex13_9.sce
|
//Example 13_9
clc;clear;funcprot(0)
// Given values
V_1=1.2;// The velocity in m/s
y_1=0.80;// The flow depth in m
gradz_b=0.15;// m
g=9.81;// m/s^2
// Calculation
Fr_1=(V_1/sqrt(g*y_1));// The upstream Froude number
y_c=(((y_1)^2*(V_1)^2)/(g))^(1/3);// The critical depth in m
E_s1=y_1+(((V_1)^2)/(2*g));// The upstream specific energy in m
// Solving equation y_2^3-(E_s1-gradz_b)y^2+(V_1^2)/(2*g)*y_1^2
coeff=[1,-(E_s1-gradz_b),0,((V_1^2)/(2*g)*y_1^2)];
y=roots(coeff);
d=y_1-(y(1)+gradz_b);// Depression in m
printf("The water surface is depressed over the bump in the amount of %0.2f m \n",d);
|
caa4fef103472932d3501fc6d1eeae63f561471d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3831/CH7/EX7.12/Ex7_12.sce
|
cb68055f74e172f596017a8020a4135db64a9eb3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
Ex7_12.sce
|
// Example 7_12
clc;funcprot(0);
// Given data
T=600;// K
I=0.10;// amp
L=10.0*10^-3;// m
b=5.00*10^-3;// m
w=1.00*10^-3;// m
rho_e=0.10;// ohm.m
// Calculation
A=b*w;// m^2
R_e=rho_e*(L/A);// W/A^2
S_pW=(I^2*R_e)/T;// W/K
printf('\nThe entropy production rate of the chip,(S_p)_W=%0.4f W/K',S_pW);
|
1ee09e06baf61db5a68b4029f06101227ade7441
|
61ae130448957e9d317026c24a8fd467e6bb08c9
|
/src/test/resources/SimpleNestedCall/SimpleNestedCall.tst
|
c26c11c4b92fb01cc25ad0a81b0ce06a7824f912
|
[] |
no_license
|
toonketels/nand2tetris-vm-translator
|
d38921aa4196cf7021a5cbce5db46885b3b8e7c3
|
dfd283fc53db0d0119286675d3462ff5d0ca7ec9
|
refs/heads/main
| 2023-06-01T04:14:38.446476
| 2021-06-24T08:07:38
| 2021-06-24T08:07:38
| 379,851,276
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 325
|
tst
|
SimpleNestedCall.tst
|
load SimpleNestedCall.asm,
output-file SimpleNestedCall.out,
compare-to SimpleNestedCall.cmp,
output-list RAM[0]%D1.6.1 RAM[1]%D1.6.1 RAM[2]%D1.6.1
RAM[3]%D1.6.1 RAM[4]%D1.6.1 RAM[256]%D1.6.1;
set RAM[0] 256,
set RAM[1] 256,
set RAM[2] 256,
set RAM[3] 3000,
set RAM[4] 4000,
repeat 700 {
ticktock;
}
output;
|
4fdc17e6d96e8909a955504fa7850261c0b4aad8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2135/CH2/EX2.10/Exa_2_10.sce
|
3896adee6210e75406919d7df78989df559437e7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 346
|
sce
|
Exa_2_10.sce
|
//Exa 2.10
clc;
clear;
close;
format('v',6);
//Given Data
mw=100;//Kg
T=30;//min
T=T*60;//sec
P=1;//KW
Q=-50;//KJ
Sw=4.19;//KJ/KgK(Specific heat of water)
W=-P*T;//KJ
//Q=W+deltaU
deltaU=Q-W;//KJ
disp(deltaU,"Chnge in internal energy in kJ : ");
delta_t=deltaU/mw/Sw;//sec
disp(delta_t,"Rise in temperature in degree C : ");
|
e3f177e27d91c0479d49ed2315141e00c59ba902
|
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
|
/New LSTMAttn Model/.data/form-split/GOLD-TEST/pus.tst
|
e1dc0caa6a79d8cdbbb89fb606cd0e053dfe012f
|
[] |
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
| 59,409
|
tst
|
pus.tst
|
پوهنتون پوهنتنو N;VOC;PL
اوسېدل اوسېدم V;IPFV;SG;1;PST;LGSPEC1
درول به درولی يم V;PFV;MASC;SG;1;FUT;LGSPEC2
غوږ نيول غوږ نيسم V;IPFV;SG;1;PRS
اوړی اوړي N;non{NOM};SG
کتاب کتابونو N;non{NOM};PL
بوخت بوختو ADJ;VOC;FEM;PL
راکول راکولي وو V;PFV;PL;1;PST;LGSPEC2
اغوستل واغوستلې V;PFV;FEM;PL;3;PST
دروستل دروستلې يې V;PFV;FEM;SG;2;PRS;LGSPEC2
دروزه دروزو N;non{NOM};PL
لرګی لرګيه N;VOC;SG
راوستل راولي V;IPFV;MASC;PL;3;PRS
غوول وغووو V;PFV;PL;1;PST;LGSPEC1
ليدل ووينم V;PFV;SG;1;PRS
ويشتل وويشته V;PFV;FEM;SG;3;PST;LGSPEC1
غپېدل غپېدلي يو V;PFV;PL;1;PRS;LGSPEC2
بلل بلله V;IPFV;FEM;SG;3;PST
شډل شډلې ADJ;non{NOM};FEM;SG
څارونکى څارونکو N;non{NOM};PL
غړومبل به غړومبلي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
غږېدل غږېدلی و V;PFV;MASC;SG;3;PST;LGSPEC2
اخيستل اخيستلې وې V;PFV;FEM;SG;2;PST;LGSPEC2
ګرځېدل ګرځېږي V;IPFV;MASC;SG;3;PRS
راوستل راولو V;IPFV;PL;1;PRS;LGSPEC1
غمجن غمجنې ADJ;non{NOM};FEM;SG
لوبه کول لوبه كولو V;IPFV;PL;1;PST
ووړی ووړو N;VOC;PL
ايستل وباسم V;PFV;SG;1;PRS
مېشت مېشتۀ ADJ;non{NOM};MASC;SG
راکول راکولي وو V;PFV;MASC;PL;3;PST;LGSPEC2
خوله خولې N;non{NOM};SG
پوهېدل پوهېږو V;IPFV;PL;1;PRS
بدلول بدلوې V;IPFV;SG;2;PRS
بلل وبولي V;PFV;FEM;SG;3;PRS
غږېدل وغږېږې V;PFV;SG;2;PRS;LGSPEC1
لوبه کول لوبه كړ V;PFV;MASC;SG;3;PST
بلل به بللي يئ V;PFV;PL;2;FUT;LGSPEC2
زده کول زده كولم V;IPFV;SG;1;PST
وټه ييز وټه ييزو ADJ;VOC;FEM;PL
راکول راکړي V;PFV;MASC;PL;3;PRS
استول استوله V;IPFV;FEM;SG;3;PST
کتل وکتلو V;PFV;PL;1;PST
اوسېدل اوسېدلﺉ V;IPFV;PL;2;PST
ښکنځل ښکنځلې وه V;PFV;FEM;SG;3;PST;LGSPEC2
ګرځېدل ګرځېدلې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
ګټل وګټلۀ V;PFV;MASC;PL;3;PST
زده کول زده كړلۀ V;PFV;MASC;PL;3;PST
هيله هيلې N;VOC;SG
مېجی مېجو N;VOC;PL
بخښل بخښي V;IPFV;MASC;SG;3;PRS
ګټل وګټلې V;PFV;SG;2;PST
غورځول غورځوي V;IPFV;MASC;PL;3;PRS
اغږل واغږل V;PFV;MASC;PL;3;PST
سترګې په لار کول سترګې په لار كړي V;PFV;FEM;SG;3;PRS
تلل لاړې V;PFV;FEM;PL;3;PST;LGSPEC1
لېونۍ لېوني ADJ;NOM;MASC;PL
پوهېدل وپوهېدﺉ V;PFV;PL;2;PST;LGSPEC1
درېدل ودرېدﺉ V;PFV;PL;2;PST;LGSPEC1
اتڼ اتڼ N;NOM;SG
غږېدل غږېږي V;IPFV;MASC;PL;3;PRS;LGSPEC1
غوښتل غوښته V;IPFV;FEM;SG;3;PST;LGSPEC1
خوړل ياست V;PFV;PL;2;PRS;LGSPEC2
وله وله N;NOM;SG
راکول راکولې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
اورېدل اورېدلۀ V;IPFV;MASC;PL;3;PST;LGSPEC1
هيله هيلو N;non{NOM};PL
غوږ نيول به غوږ نيولي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
پلاز پلاز N;NOM;SG
همېل همېلونه N;NOM;PL
ګڼ ګڼو ADJ;non{NOM};MASC;PL
لرل لرم V;IPFV;SG;1;PRS
څاپېړه څاپېړې N;NOM;PL
بايلل وبايللې V;PFV;SG;2;PST
لوبېدل ولوبېدلو V;PFV;PL;1;PST
تلل لاړلۀ V;PFV;MASC;PL;3;PST;LGSPEC1
اورېدل واورېدل V;PFV;MASC;PL;3;PST;LGSPEC1
بايلل وبايلﺉ V;PFV;PL;2;PRS
ګنډل ګنډلﺉ V;IPFV;PL;2;PST
ټپاکی ټپاکيه N;VOC;SG
کول كولۀ V;IPFV;MASC;PL;3;PST
موندل مومي V;IPFV;FEM;PL;3;PRS
ژامه ژامو N;non{NOM};PL
ژباړل وژباړي V;PFV;FEM;SG;3;PRS
مور مور N;non{NOM};SG
موندل موندې V;IPFV;SG;2;PST;LGSPEC1
سوټک سوټک N;NOM;SG
غوږ نيول غوږ نيولې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
لامبو لامبو N;VOC;SG
شډل شډل ADJ;non{NOM};MASC;SG
دروستل دروستلی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
غوول غوولې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
داړل داړي V;IPFV;MASC;SG;3;PRS
راوستل راولﺉ V;IPFV;PL;2;PRS;LGSPEC1
اخيستل اخيستلې وه V;PFV;FEM;SG;3;PST;LGSPEC2
ميېر ميېر N;non{NOM};SG
وګړواکي وګړواکۍ N;non{NOM};SG
بهېدل بهېږم V;IPFV;SG;1;PRS;LGSPEC1
لمسول ولمسوله V;PFV;FEM;SG;3;PST
زده کول زده كړلو V;PFV;PL;1;PST
راکول به راکولی يې V;PFV;MASC;SG;2;FUT;LGSPEC2
انګور انګور N;NOM;SG
لوبېدل لوبېدله V;IPFV;FEM;SG;3;PST
راوستل ياست V;PFV;PL;2;FUT;LGSPEC2
اغږل به اغږلې يم V;PFV;FEM;SG;1;FUT;LGSPEC2
لمسول لمسولم V;IPFV;SG;1;PST
ګنډل ګنډل V;IPFV;MASC;PL;3;PST
جاروکښ جاروکښان N;NOM;PL
اخښل اغږﺉ V;IPFV;PL;2;PRS
ګرځېدل ګرځېږي V;IPFV;MASC;SG;3;PRS;LGSPEC1
کېدل کېدې V;IPFV;FEM;PL;3;PST;LGSPEC1
غوږ نيول وغوږ نيولﺉ V;PFV;PL;2;PST
غوږ نيول وغوږ نيسو V;PFV;PL;1;PRS;LGSPEC1
راکول راکولی يې V;PFV;MASC;SG;2;PRS;LGSPEC2
دېو دېو N;non{NOM};SG
بنګېدل وبنګېږي V;PFV;FEM;SG;3;PRS;LGSPEC1
غونه غونې N;non{NOM};SG
غږېدل وغږېدلﺉ V;PFV;PL;2;PST
درول دروم V;IPFV;SG;1;PRS
راوستل وراوسته V;PFV;FEM;SG;3;PST;LGSPEC1
لامبل ولامبلې V;PFV;SG;2;PST
اوسېدونکې اوسېدونکې N;NOM;SG
وټه ييز وټه ييزو ADJ;VOC;MASC;PL
درېدل ودرېږﺉ V;PFV;PL;2;PRS
لرل ولرلۀ V;PFV;MASC;PL;3;PST
لېشه کول لېشه كوي V;IPFV;FEM;SG;3;PRS
درملپوهنه درملپوهنې N;NOM;PL
موندل موندلو V;IPFV;PL;1;PST
بنګېدل بنګېږي V;IPFV;FEM;SG;3;PRS
ناسم ناسمې ADJ;non{NOM};FEM;SG
بدلول بدلې كړلې V;PFV;FEM;PL;3;PST
اچول اچولۀ V;IPFV;MASC;PL;3;PST
بڼوال بڼوالان N;NOM;PL
غوول غووه V;IPFV;FEM;SG;3;PST;LGSPEC1
تلل تلې V;IPFV;FEM;PL;3;PST;LGSPEC1
ورځ ورځې N;VOC;SG
کوچنی کوچنۍ ADJ;non{NOM};FEM;SG;LGSPEC1
انګور انګورونو N;VOC;PL
ولسولي ولسولي N;NOM;SG
غوږ نيول غوږ نيولي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
مېړۀ مېړونو N;non{NOM};PL
سترګه سترګو N;non{NOM};PL
ټپاکی ټپاکي N;non{NOM};SG
شين شنې ADJ;non{NOM};FEM;SG
اخيستل اخلي V;IPFV;FEM;PL;3;PRS
بربنډ بربنډ ADJ;NOM;MASC;SG
درېدل درېږﺉ V;IPFV;PL;2;PRS
دارو داروګانو N;VOC;PL
بدلېدل بدلېده V;IPFV;FEM;SG;3;PST
اغږل واغږي V;PFV;MASC;PL;3;PRS
بدلېدل بدلېدل بدلېدلۀ V;IPFV;MASC;PL;3;PST
خېل خېل N;NOM;SG
داړل به داړلې يې V;PFV;FEM;SG;2;FUT;LGSPEC2
دروستل به دروستلي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
ښارو ښارو N;VOC;SG
تړل تړله V;IPFV;FEM;SG;3;PST
ګنډل ګنډي V;IPFV;MASC;PL;3;PRS
آيات آياتونه N;NOM;PL
بې نياوه بې نياوه ADJ;non{NOM};FEM;PL
بنګېدل ومه V;PFV;FEM;SG;1;PST;LGSPEC2
لرل ولري V;PFV;MASC;PL;3;PRS
لېونۍ لېونيو N;VOC;PL
جګ جګو ADJ;VOC;MASC;PL
موندل مومﺉ V;IPFV;PL;2;PRS;LGSPEC1
غپل غپﺉ V;IPFV;PL;2;PRS
بدلېدل بدل شوۀ V;PFV;MASC;SG;3;PST
ښکار ښکار N;non{NOM};SG
استول استولې وې V;PFV;FEM;PL;3;PST;LGSPEC2
پايول پايولی و V;PFV;MASC;SG;3;PST;LGSPEC2
سپين سپينې ADJ;NOM;FEM;PL
منټ منټه N;VOC;SG
انګور انګوره N;VOC;SG
ښاغلی ښاغلى N;NOM;SG
اغوستل اغوستلي وو V;PFV;PL;1;PST;LGSPEC2
موندل مومو V;IPFV;PL;1;PRS;LGSPEC1
موندل به موندلي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
طالب طالبه N;VOC;SG
ټنډه ټنډې N;VOC;SG
پلورل پلورلۀ V;IPFV;MASC;PL;3;PST
غپېدل وغپېږو V;PFV;PL;1;PRS
غوښتل غوښتلي وو V;PFV;PL;1;PST;LGSPEC2
درېدل درېږي V;IPFV;FEM;PL;3;PRS
معدن معدنونه N;NOM;PL
درملپوهنه درملپوهنه N;NOM;SG
بلل وبولم V;PFV;SG;1;PRS
اخيستل به اخيستلی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
ګنډل وګنډي V;PFV;FEM;SG;3;PRS
اغږل اغږلۀ V;IPFV;MASC;PL;3;PST
خوږ خوږو ADJ;VOC;MASC;PL
خوړل به خوړلې ده V;PFV;FEM;SG;3;FUT;LGSPEC2
اغوستل اغوندم V;IPFV;SG;1;PRS;LGSPEC1
غپل غپلو V;IPFV;PL;1;PST
بې نياوه بې نياوه ADJ;NOM;FEM;PL
بنګېدل بنګېږي V;IPFV;MASC;SG;3;PRS;LGSPEC1
ژبپوهنه ژبپوهنو N;VOC;PL
غړومبل غړومبلی يې V;PFV;MASC;SG;2;PRS;LGSPEC2
بن بن N;NOM;SG
اغزی اغزي N;NOM;PL
موټک وهل ووهي V;PFV;MASC;SG;3;PRS
سکالو سکالوګانې N;NOM;PL
بې سا بې سا ADJ;non{NOM};FEM;PL
درېدل درېدلي يو V;PFV;PL;1;PRS;LGSPEC2
ژوندينکه ژوندينکې N;non{NOM};SG
سټک سټکونه N;NOM;PL
پايول پايولﺉ V;IPFV;PL;2;PST
غږېدل غږېدې V;IPFV;FEM;PL;3;PST;LGSPEC1
منځنی منځنۍ ADJ;VOC;FEM;PL
پخول پوخ كړﺉ V;PFV;PL;2;PST
زغمل ياست V;PFV;PL;2;PRS;LGSPEC2
سپين سپينو ADJ;VOC;MASC;PL
ښامار ښامار N;non{NOM};SG
جږګی جږګو N;VOC;PL
موندل موندلي ول V;PFV;MASC;PL;3;PST;LGSPEC2
دروستل دروسته V;IPFV;FEM;SG;3;PST;LGSPEC1
سپی سپي N;NOM;PL
اوړېدل اوړېدلﺉ V;IPFV;PL;2;PST
پوهېدل وپوهېدلو V;PFV;PL;1;PST
ګنډل وګنډو V;PFV;PL;1;PRS
اړول واړولﺉ V;PFV;PL;2;PST
ايغلو ايغلو N;VOC;SG
غپول غپولی وې V;PFV;MASC;SG;2;PST;LGSPEC2
درملتون درملتانۀ N;non{NOM};SG
تلل لاړشو V;PFV;PL;1;PRS;LGSPEC1
لامبل ولامبﺉ V;PFV;PL;2;PRS
افغان افغان N;non{NOM};SG
موندل ومومﺉ V;PFV;PL;2;PRS
ويشتل وويشتو V;PFV;PL;1;PST;LGSPEC1
بدپوری بدپوري N;non{NOM};SG
لېونۍ لېونو N;non{NOM};PL
اورېدل اورېږې V;IPFV;SG;2;PRS;LGSPEC1
کور کور N;NOM;SG
اچول واچوله V;PFV;FEM;SG;3;PST
لېشه کول لېشه كړم V;PFV;SG;1;PRS
زغمل زغملي وو V;PFV;PL;1;PST;LGSPEC2
خوړل وخوړل V;PFV;MASC;PL;3;PST
لمانځل ولمانځۀ V;PFV;MASC;SG;3;PST
درېدل درېدلۀ V;IPFV;MASC;PL;3;PST;LGSPEC1
تلل ځي V;IPFV;FEM;SG;3;PRS;LGSPEC1
اخښل اخښلی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
تړل تړل V;IPFV;MASC;PL;3;PST
اغږل واغږۀ V;PFV;MASC;SG;3;PST
بلل وبللﺉ V;PFV;PL;2;PST
ږغېدل ږغېدې V;IPFV;SG;2;PST;LGSPEC1
انګور انګورونو N;non{NOM};PL
تلل لاړ شي V;PFV;MASC;SG;3;PRS
غږېدل غږېدلۀ V;IPFV;MASC;PL;3;PST
جګ جګې ADJ;non{NOM};FEM;SG
ټنډه ټنډې N;non{NOM};SG
غږېدل غږېږم V;IPFV;SG;1;PRS
استول به استولې يم V;PFV;FEM;SG;1;FUT;LGSPEC2
بربنډ بربنډې ADJ;VOC;FEM;SG
زباتل وزباتي V;PFV;FEM;SG;3;PRS
مرغړی مرغړو N;VOC;PL
بابا باباګانو N;VOC;PL
استول واستولۀ V;PFV;MASC;PL;3;PST
ښوونکې ښوونکو N;non{NOM};PL
موندل به موندلی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
تړل وتړﺉ V;PFV;PL;2;PRS
زباتل زباتلې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
ژباړل وژباړي V;PFV;MASC;PL;3;PRS
ښار ښار N;non{NOM};SG
وينګ وينګ N;NOM;SG
اغږل واغږلۀ V;PFV;MASC;PL;3;PST
څښاک څښاکونو N;non{NOM};PL
مالک مالکه N;VOC;SG
بلل بللې وې V;PFV;FEM;SG;2;PST;LGSPEC2
ښکنځل وښکنځۀ V;PFV;MASC;SG;3;PST
دوست دوست N;NOM;SG
خوړل خوړلي يئ V;PFV;PL;2;PRS;LGSPEC2
استول استولي يو V;PFV;PL;1;PRS;LGSPEC2
موندل وموندلو V;PFV;PL;1;PST
څاپېړه څاپېړې N;VOC;SG
اغږل اغږلې V;IPFV;SG;2;PST
ښکنځل ښکنځي V;IPFV;MASC;PL;3;PRS
لامبل لامبلو V;IPFV;PL;1;PST
ږغېدل ږغېږي V;IPFV;MASC;SG;3;PRS
ليدل ليدله V;IPFV;FEM;SG;3;PST
زغمل وزغملۀ V;PFV;MASC;PL;3;PST
اوړېدل واوړېږې V;PFV;SG;2;PRS
ژوندی ژوندۍ ADJ;NOM;FEM;SG
غوول غوول V;IPFV;MASC;PL;3;PST
اخيستل اخيستلم V;IPFV;SG;1;PST
اوړېدل اوړېږي V;IPFV;FEM;PL;3;PRS
بدلېدل بدلېدې V;IPFV;SG;2;PST
کومی کومي N;non{NOM};SG
دروستل ودروستۀ V;PFV;MASC;SG;3;PST
استول استولی دی V;PFV;MASC;SG;3;PRS;LGSPEC2
غوښتل غوښتلی و V;PFV;MASC;SG;3;PST;LGSPEC2
ولسي جرګه ولسي جرګې N;NOM;PL
اغوستل به اغوستلې يې V;PFV;FEM;SG;2;FUT;LGSPEC2
موندل وموندلۀ V;PFV;MASC;PL;3;PST
انځورګر انځورګرانو N;non{NOM};PL
راکول ياست V;PFV;PL;2;FUT;LGSPEC2
سړه سوړ ADJ;NOM;MASC;SG
کتل کتلﺉ V;IPFV;PL;2;PST
سوټک سوټکه N;VOC;SG
غوښتل وغوښتۀ V;PFV;MASC;SG;3;PST
زغمل وزغملو V;PFV;PL;1;PST
ناسم ناسم ADJ;non{NOM};MASC;SG
ليدل وليدلې V;PFV;FEM;PL;3;PST
شمېرپوهنه شمېرپوهنو N;non{NOM};PL
ګرځېدل ګرځېدلو V;IPFV;PL;1;PST
راوستل راولم V;IPFV;SG;1;PRS;LGSPEC1
شين شنو ADJ;non{NOM};FEM;PL
لامبل ولامبې V;PFV;SG;2;PRS
غوول وغووله V;PFV;FEM;SG;3;PST
ګټل وګټۀ V;PFV;MASC;SG;3;PST
غوښتل وغوښتلﺉ V;PFV;PL;2;PST
بلل بلل V;IPFV;MASC;PL;3;PST
غږېدل وغږېدلۀ V;PFV;MASC;PL;3;PST;LGSPEC1
ټينګ ټينګې ADJ;non{NOM};FEM;SG
پتنګ پتنګ N;NOM;SG
لېوۀ لېوان N;NOM;PL
لرل ولرله V;PFV;FEM;SG;3;PST
دروستل دروستلي دي V;PFV;FEM;PL;3;PRS;LGSPEC2
نسواري نسواري ADJ;non{NOM};MASC;PL
غوښه غوښه N;NOM;SG
پايول پايولې وه V;PFV;FEM;SG;3;PST;LGSPEC2
اخيستل اخلم V;IPFV;SG;1;PRS
بنګېدل بنګېږې V;IPFV;SG;2;PRS;LGSPEC1
راکول به راکولې ده V;PFV;FEM;SG;3;FUT;LGSPEC2
لمسول لمسوۀ V;IPFV;MASC;SG;3;PST
پلاز پلاز N;non{NOM};SG
بلل بولي V;IPFV;FEM;PL;3;PRS
سکه سکه ADJ;VOC;MASC;PL
درول به درولي يو V;PFV;PL;1;FUT;LGSPEC2
رنډۍ رنډۍ N;NOM;PL
ښاغلی ښاغليه N;VOC;SG
لامبل ولامبۀ V;PFV;MASC;SG;3;PST
غوږ نيول وغوږ نيولم V;PFV;SG;1;PST
درول ودروم V;PFV;SG;1;PRS
خوږ خواږۀ ADJ;non{NOM};MASC;SG
لېونی لېوني N;non{NOM};SG
اګل اګلونو N;non{NOM};PL
ګام ګامونو N;non{NOM};PL
زباتل زباتلې يې V;PFV;FEM;SG;2;PRS;LGSPEC2
غپېدل غپېدلي ول V;PFV;MASC;PL;3;PST;LGSPEC2
افغان افغانانو N;VOC;PL
ژرنده ژرندې N;VOC;SG
اچول اچولﺉ V;IPFV;PL;2;PST
غږېدل وغږ ېدلې V;PFV;FEM;PL;3;PST
راکول راکولی وم V;PFV;MASC;SG;1;PST;LGSPEC2
بوټپوهنه بوټپوهنو N;non{NOM};PL
رسنۍ رسنۍ N;VOC;SG
انګوړی انګوړو N;non{NOM};PL
اخښل واغږي V;PFV;MASC;SG;3;PRS
ټاپو ټاپوګانو N;VOC;PL
راوستل راوستلې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
ووړی ووړي N;NOM;PL
لوند لاندۀ ADJ;non{NOM};MASC;SG
جګ جګو ADJ;non{NOM};FEM;PL
ګټل ګټلم V;IPFV;SG;1;PST
غپول غپولي وو V;PFV;PL;1;PST;LGSPEC2
يونی يونى N;NOM;SG
اړول اړولی وم V;PFV;MASC;SG;1;PST;LGSPEC2
وټه ييز وټه ييزې ADJ;non{NOM};FEM;SG
ښکنځل وښکنځي V;PFV;FEM;PL;3;PRS
بنګېدل به بنګېدلی يم V;PFV;MASC;SG;1;FUT;LGSPEC2
بنګېدل وبنګېده V;PFV;FEM;SG;3;PST;LGSPEC1
بدلېدل بدل شولم V;PFV;SG;1;PST
غپل وغپلم V;PFV;SG;1;PST
درېدل درېدلم V;IPFV;SG;1;PST
اړول واړول V;PFV;MASC;PL;3;PST
بخښل بخښل V;IPFV;MASC;PL;3;PST
اغوستل اغوستلی وم V;PFV;MASC;SG;1;PST;LGSPEC2
نوکغوڅی نوکغوڅي N;NOM;PL
لمونځ لمنځو N;non{NOM};PL
نسواري نسواري ADJ;NOM;FEM;PL
پشۍ پشۍ N;VOC;SG
واکمن واکمنو N;non{NOM};PL
غوږ نيول غوږ نيسې V;IPFV;SG;2;PRS
غپول به غپولي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
کتل ګورﺉ V;IPFV;PL;2;PRS
راوستل به راوستلي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
تړل تړي V;IPFV;MASC;PL;3;PRS
سړه سړو ADJ;non{NOM};FEM;PL
پايول پايوې V;IPFV;SG;2;PRS
لاس لاسونه N;NOM;PL
لشه لشې N;non{NOM};SG
غوږ نيول غوږ نيسي V;IPFV;MASC;PL;3;PRS
پوهېدل وپوهېږﺉ V;PFV;PL;2;PRS;LGSPEC1
بايلل بايلي يئ V;PFV;PL;2;PRS;LGSPEC2
ناسم ناسمې ADJ;NOM;FEM;PL
ويشتل وويشتل V;PFV;MASC;PL;3;PST;LGSPEC1
غږېدل غږېدلم V;IPFV;SG;1;PST
کلک کلکې ADJ;VOC;FEM;SG
پوهېدل وپوهېږي V;PFV;MASC;PL;3;PRS
غوښتل غوښتلې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
زباتل زباتې V;IPFV;SG;2;PRS
پسرلی پسرلي N;non{NOM};SG
دروستل دروستۀ V;IPFV;MASC;SG;3;PST;LGSPEC1
لمانځل لمانځﺉ V;IPFV;PL;2;PRS
اورېدل واورېږي V;PFV;MASC;PL;3;PRS;LGSPEC1
غپېدل غپېږي V;IPFV;MASC;SG;3;PRS;LGSPEC1
اغوستل واغوستم V;PFV;SG;1;PST;LGSPEC1
الوتل الوتۀ V;IPFV;MASC;SG;3;PST
دروستل دروستلی دی V;PFV;MASC;SG;3;PRS;LGSPEC2
خور خويندې N;NOM;PL
غورځول وغورځوو V;PFV;PL;1;PRS
پوهېدل پوهېدﺉ V;IPFV;PL;2;PST;LGSPEC1
غړومبل به غړومبلي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
اخيستل اخلي V;IPFV;MASC;PL;3;PRS
پوهېدل پوهېږي V;IPFV;FEM;PL;3;PRS
بايلل بايلی و V;PFV;MASC;SG;3;PST;LGSPEC2
پخېدل پاخۀ شوو V;PFV;PL;1;PST
غوول غوولي وو V;PFV;PL;1;PST;LGSPEC2
راکول راکولی و V;PFV;MASC;SG;3;PST;LGSPEC2
بنګېدل بنګېدلې يې V;PFV;FEM;SG;2;PRS;LGSPEC2
خوټه خوټه N;NOM;SG
غپېدل وغپېدۀ V;PFV;MASC;SG;3;PST
رنډۍ رنډۍ N;non{NOM};SG
ژونکه ژونکې N;NOM;PL
کول كړﺉ V;PFV;PL;2;PST
بنګېدل بنګېږي V;IPFV;FEM;PL;3;PRS;LGSPEC1
اخښل اخښلﺉ V;IPFV;PL;2;PST
بنګېدل بنګېدلی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
غوول وغيي V;PFV;MASC;PL;3;PRS;LGSPEC1
پايول پايوي V;IPFV;FEM;PL;3;PRS
ګرځېدل وګرځېږي V;PFV;FEM;PL;3;PRS
غږېدل غږېږي V;IPFV;FEM;SG;3;PRS;LGSPEC1
پوهېدل پوهېدۀ V;IPFV;MASC;SG;3;PST
اخښل اخښلې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
پاړو پاړو N;non{NOM};SG
لار لارو N;VOC;PL
غړی غړو N;VOC;PL
ښامار ښاماره N;VOC;SG
غوږ نيول غوږ نيسي V;IPFV;FEM;SG;3;PRS
غورځول وغورځوله V;PFV;FEM;SG;3;PST
غړومبل غړومبلي يئ V;PFV;PL;2;PRS;LGSPEC2
پوهنتون پوهنتونه N;VOC;SG
زباتل زباتۀ V;IPFV;MASC;SG;3;PST
غړومبل غړومبلې وې V;PFV;FEM;PL;3;PST;LGSPEC2
ګرځېدل ګرځېده V;IPFV;FEM;SG;3;PST;LGSPEC1
تلل تللي وو V;PFV;MASC;PL;3;PST;LGSPEC2
بوخت بوخت ADJ;NOM;MASC;PL
زغمل زغمل V;IPFV;MASC;PL;3;PST
درېدل درېدلي وو V;PFV;MASC;PL;3;PST;LGSPEC2
نياو نياو N;non{NOM};SG
تلل لاړﺉ V;PFV;PL;2;PST;LGSPEC1
درول درولې وې V;PFV;FEM;PL;3;PST;LGSPEC2
پايول ياست V;PFV;PL;2;PRS;LGSPEC2
لوبه کول لوبه كولې V;IPFV;FEM;PL;3;PST
الوتل والوزم V;PFV;SG;1;PRS
اخيستل اخلي V;IPFV;FEM;SG;3;PRS
بدلول بدل كړﺉ V;PFV;PL;2;PST
ګړندی ګړنديو ADJ;VOC;MASC;PL
ښکنځل وښکنځي V;PFV;MASC;PL;3;PRS
غوول وغووﺉ V;PFV;PL;2;PST;LGSPEC1
مور مورې N;VOC;SG
بدلول بدلوله V;IPFV;FEM;SG;3;PST
اخښل اخښۀ V;IPFV;MASC;SG;3;PST
غومبه غومبو N;VOC;PL
ګټل وګټو V;PFV;PL;1;PRS
غوول وغووې V;PFV;FEM;PL;3;PST;LGSPEC1
سړه سړو ADJ;VOC;MASC;PL
سيلۍ سيلۍ N;VOC;SG
انځورګر انځورګر N;non{NOM};SG
ژباړل ژباړلې V;IPFV;FEM;PL;3;PST
پايله پايلې N;non{NOM};SG
تلل تلل V;IPFV;MASC;PL;3;PST
غپول غپولي ول V;PFV;MASC;PL;3;PST;LGSPEC2
ښکنځل ښکنځلي وو V;PFV;PL;1;PST;LGSPEC2
اغوستل واغوستۀ V;PFV;MASC;SG;3;PST;LGSPEC1
اخيستل اخيستلي يو V;PFV;PL;1;PRS;LGSPEC2
اړول اړولي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
اغوستل واغوندم V;PFV;SG;1;PRS
لوبه کول لوبه كوي V;IPFV;MASC;PL;3;PRS
سترګې په لار کول سترګې په لار كړلو V;PFV;PL;1;PST
غپول وغپوو V;PFV;PL;1;PRS
جنګ جنګ N;non{NOM};SG
افغان افغان N;NOM;SG
ژونکه ژونکې N;VOC;SG
اړول به اړولی يې V;PFV;MASC;SG;2;FUT;LGSPEC2
بنګېدل به بنګېدلي يو V;PFV;PL;1;FUT;LGSPEC2
غپل وغپﺉ V;PFV;PL;2;PRS
غمی غميه N;VOC;SG
غړومبل غړومبلي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
درول درولی و V;PFV;MASC;SG;3;PST;LGSPEC2
ګردی ګردی ADJ;NOM;MASC;SG
لامبو لامبو N;non{NOM};SG
لمسول لمسوﺉ V;IPFV;PL;2;PRS
اورېدل واورېدلې V;PFV;SG;2;PST
ګرځېدل ګرځېدلي يو V;PFV;PL;1;PRS;LGSPEC2
پخېدل پاخۀ شولۀ V;PFV;MASC;PL;3;PST
زباتل زباتي V;IPFV;FEM;SG;3;PRS
لوبېدل لوبېږي V;IPFV;FEM;PL;3;PRS
تلل ځﺉ V;IPFV;PL;2;PRS
پخېدل پخېدلې V;IPFV;FEM;PL;3;PST
ګرځېدل به ګرځېدلي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
اوړېدل واوړ ېدلې V;PFV;FEM;PL;3;PST
الوتل الوزي V;IPFV;MASC;PL;3;PRS
تود تودو ADJ;non{NOM};MASC;PL
غږېدل به غږېدلی يم V;PFV;MASC;SG;1;FUT;LGSPEC2
نيلي نيلي ADJ;VOC;FEM;SG
لوبېدل لوبېده V;IPFV;FEM;SG;3;PST;LGSPEC1
اسپه اسپه N;NOM;SG
سوړ سړو ADJ;VOC;FEM;PL
اوسېدل اوسېږﺉ V;IPFV;PL;2;PRS
زغمل زغملی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
نسواري نسواري ADJ;non{NOM};FEM;SG
غپل غپل V;IPFV;MASC;PL;3;PST
پخېدل پوخ شې V;PFV;SG;2;PRS
ګرد ګردو ADJ;non{NOM};FEM;PL
غټ غټ ADJ;non{NOM};MASC;SG
لرغونپوهنه لرغونپوهنو N;non{NOM};PL
کلک کلکې ADJ;non{NOM};FEM;SG
سترګې په لار کول سترګې په لار كړې V;PFV;FEM;PL;3;PST
خوړل وخوري V;PFV;FEM;PL;3;PRS
کتل وګوري V;PFV;MASC;PL;3;PRS
موږک موږک N;NOM;SG
خړ خړو ADJ;VOC;MASC;PL
کتل وخوت V;PFV;MASC;SG;3;PST
شډل شډلې ADJ;VOC;FEM;SG
کنګال کنګال ADJ;non{NOM};MASC;SG
الوتل والوزﺉ V;PFV;PL;2;PRS
کېدل کېږې V;IPFV;SG;2;PRS
بلل بلۀ V;IPFV;MASC;SG;3;PST;LGSPEC1
پخول پخه کړې وه V;PFV;FEM;SG;3;PST;LGSPEC2
غپل وغپو V;PFV;PL;1;PRS
غږېدل غږېدلۀ V;IPFV;MASC;PL;3;PST;LGSPEC1
نمونځ نمنځو N;VOC;PL
نوکغوڅی نوکغوڅيه N;VOC;SG
ملک ملک N;non{NOM};SG
زغمل زغملﺉ V;IPFV;PL;2;PST
واټ واټونو N;non{NOM};PL
پلازمېنه پلازمېنه N;NOM;SG
بخښل وبخښله V;PFV;FEM;SG;3;PST
الوتل ولوتلي ول V;PFV;MASC;PL;3;PST;LGSPEC2
غپېدل غپېدلي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
درول درول V;IPFV;MASC;PL;3;PST
څنګل څنګلې N;NOM;PL
زغره زغرې N;non{NOM};SG
غړومبل وغړومبو V;PFV;PL;1;PRS
بهېدل بهېدې V;IPFV;FEM;PL;3;PST;LGSPEC1
خوړل وخورم V;PFV;SG;1;PRS;LGSPEC1
ايستل ايستلﺉ V;IPFV;PL;2;PST
زنه زنه N;NOM;SG
داړل داړلۀ V;IPFV;MASC;PL;3;PST
خوږ خوږې ADJ;VOC;FEM;SG
غپل غپلی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
خوځنده انځور خوځنده انځور N;NOM;SG
موندل موندۀ V;IPFV;MASC;SG;3;PST
څادر څادر N;NOM;SG
لمانځل به لمانځلی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
غپل وغپي V;PFV;MASC;PL;3;PRS
غوښتل غوښتلی وم V;PFV;MASC;SG;1;PST;LGSPEC2
خوړل خورم V;IPFV;SG;1;PRS
بلل بللۀ V;IPFV;MASC;PL;3;PST
رنګ رنګونو N;non{NOM};PL
بنګېدل وبنګېږي V;PFV;FEM;SG;3;PRS
لمسول لمسولی وم V;PFV;MASC;SG;1;PST;LGSPEC2
کول كولې V;IPFV;SG;2;PST
توتي توتيانو N;non{NOM};PL
غل غل N;non{NOM};SG
بلل به بللې يم V;PFV;FEM;SG;1;FUT;LGSPEC2
ښځه ښځو N;non{NOM};PL
ذکر ذکره N;VOC;SG
اړول اړولی يې V;PFV;MASC;SG;2;PRS;LGSPEC2
کب کب N;NOM;SG
غوښتل وغواړي V;PFV;FEM;SG;3;PRS
ګرمي ګرميو N;non{NOM};PL
ويشتل ويشتې V;IPFV;FEM;PL;3;PST;LGSPEC1
لمونځ لمانځۀ N;non{NOM};SG
منځنی منځني ADJ;non{NOM};MASC;SG
کول كوم V;IPFV;SG;1;PRS
وګړی وګړي N;non{NOM};SG
ګلابي ګلابي ADJ;VOC;MASC;PL
بلل وبللې V;PFV;SG;2;PST
اغوستل واغوندي V;PFV;MASC;SG;3;PRS
مېلوه مېلوو N;non{NOM};PL
بنګېدل بنګېدلی وې V;PFV;MASC;SG;2;PST;LGSPEC2
پروړه پروړه N;NOM;SG
لمانځل ومه V;PFV;FEM;SG;1;PST;LGSPEC2
تلل لاړلې V;PFV;SG;2;PST
غورځول به غورځولي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
اغږل به اغږلي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
جګ جګه ADJ;NOM;FEM;SG
ګډی ګډو N;non{NOM};PL
غپول وغپولې V;PFV;SG;2;PST
لوبېدل لوبېدۀ V;IPFV;MASC;SG;3;PST;LGSPEC1
ښوونکی ښوونکي N;non{NOM};SG
لېونی لېوني N;NOM;PL
راتلل راځي V;IPFV;MASC;SG;3;PRS
غوږ نيول غوږ نيسي V;IPFV;MASC;SG;3;PRS;LGSPEC1
کېدل کېدلم V;IPFV;SG;1;PST
پخېدل پاخۀ شﺉ V;PFV;PL;2;PRS
بوخت بوختو ADJ;non{NOM};MASC;PL
لمسول ولمسوو V;PFV;PL;1;PRS
هيله هيله N;NOM;SG
اوړېدل واوړېږﺉ V;PFV;PL;2;PRS
ګرځېدل ګرځېدلې V;IPFV;SG;2;PST
داړل به داړلي يو V;PFV;PL;1;FUT;LGSPEC2
لامبل لامبلې V;IPFV;SG;2;PST
پايول به پايولی يم V;PFV;MASC;SG;1;FUT;LGSPEC2
بايلل وبايللﺉ V;PFV;PL;2;PST
راکول راکوﺉ V;IPFV;PL;2;PST;LGSPEC1
خوړل خوړم V;IPFV;SG;1;PST;LGSPEC1
کوڼ کاڼۀ ADJ;NOM;MASC;PL
موندل به موندلې يې V;PFV;FEM;SG;2;FUT;LGSPEC2
ژوندينکه ژوندينکو N;VOC;PL
لمسول لمسولې وې V;PFV;FEM;SG;2;PST;LGSPEC2
غوږ نيول وغوږ نيسﺉ V;PFV;PL;2;PRS;LGSPEC1
موندل مونده V;IPFV;FEM;SG;3;PST;LGSPEC1
پايول ومه V;PFV;FEM;SG;1;PST;LGSPEC2
اخيستل اخيستلې وم V;PFV;FEM;SG;1;PST;LGSPEC2
غږېدل وغږېږي V;PFV;MASC;SG;3;PRS
استول استولې وه V;PFV;FEM;SG;3;PST;LGSPEC2
پخول پخوو V;IPFV;PL;1;PRS
اسمان اسمان N;non{NOM};SG
سترګې په لار کول سترګې په لار كولې V;IPFV;SG;2;PST
اورېدل اورېدو V;IPFV;PL;1;PST;LGSPEC1
هوکړه هوکړې N;NOM;PL
هګۍ هګيو N;non{NOM};PL
ناسم ناسم ADJ;NOM;MASC;SG
غمجن غمجن ADJ;NOM;MASC;PL
داړل داړلې وم V;PFV;FEM;SG;1;PST;LGSPEC2
الوتل ولوتلی يې V;PFV;MASC;SG;2;PRS;LGSPEC2
وله ولې N;non{NOM};SG
تلل به تللې يې V;PFV;FEM;SG;2;FUT;LGSPEC2
کتل خوت V;IPFV;MASC;SG;3;PST
الوتل به ولوتلی يې V;PFV;MASC;SG;2;FUT;LGSPEC2
څرګند څرګندو ADJ;VOC;FEM;PL
لرل ولرو V;PFV;PL;1;PRS
ونه ونو N;non{NOM};PL
اورېدل اورېدلﺉ V;IPFV;PL;2;PST
غوول به غوولې يم V;PFV;FEM;SG;1;FUT;LGSPEC2
اړول اړولې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
ګرځېدل وګرځېدې V;PFV;FEM;PL;3;PST;LGSPEC1
اسماني اسماني ADJ;non{NOM};MASC;SG
اخيستل ياست V;PFV;PL;2;PRS;LGSPEC2
اورلوبه اورلوبه N;NOM;SG
تېرۀ تېره ADJ;NOM;FEM;SG
اغوستل ومه V;PFV;FEM;SG;1;PST;LGSPEC2
ايغلو ايغلوګان N;NOM;PL
وګړی وګړى N;NOM;SG
کېدل شﺉ V;PFV;PL;2;PRS;LGSPEC1
پوهېدل وپوهېږې V;PFV;SG;2;PRS
څرګند څرګند ADJ;NOM;MASC;PL
غورځول غورځولې وم V;PFV;FEM;SG;1;PST;LGSPEC2
ګنډل ګنډي V;IPFV;FEM;PL;3;PRS
زده کول زده كولې V;IPFV;FEM;PL;3;PST
لوڅ لوڅ ADJ;non{NOM};MASC;SG
غپول غپولې V;IPFV;FEM;PL;3;PST
تود تودې ADJ;NOM;FEM;PL
راوستل راوستلم V;IPFV;SG;1;PST
غوږ نيول غوږ نيسﺉ V;IPFV;PL;2;PRS;LGSPEC1
موندل مومي V;IPFV;FEM;SG;3;PRS
غوول وغوولې V;PFV;SG;2;PST
لمسول لمسولي وئ V;PFV;PL;2;PST;LGSPEC2
ايستل وباسي V;PFV;FEM;PL;3;PRS
کلک کلک ADJ;NOM;MASC;PL
غوږ نيول غوږ نيولﺉ V;IPFV;PL;2;PST
بدلېدل بدل شي V;PFV;MASC;PL;3;PRS
غوږ نيول غوږ نيوې V;IPFV;SG;2;PST;LGSPEC1
زده کول زده كړې V;PFV;SG;2;PST
غپېدل غپېږو V;IPFV;PL;1;PRS
اغوستل اغوستلې وې V;PFV;FEM;PL;3;PST;LGSPEC2
راوستل راوستلې وې V;PFV;FEM;SG;2;PST;LGSPEC2
سوټک سوټکونه N;NOM;PL
سترګې په لار کول سترګې په لار كوم V;IPFV;SG;1;PRS
لشه لشې N;NOM;PL
خېټه خېټو N;non{NOM};PL
خوړل خوړلي يو V;PFV;PL;1;PRS;LGSPEC2
شين شنو ADJ;non{NOM};MASC;PL
خړ خړ ADJ;non{NOM};MASC;SG
جوړول وجوړوي V;PFV;FEM;PL;3;PRS
غپول به غپولي يو V;PFV;PL;1;FUT;LGSPEC2
اغږل اغږله V;IPFV;FEM;SG;3;PST
راکول راکولﺉ V;IPFV;PL;2;PST
غوږ نيول وغوږ نيوو V;PFV;PL;1;PST;LGSPEC1
لرل لرلې V;IPFV;SG;2;PST
خوړل خورﺉ V;IPFV;PL;2;PRS;LGSPEC1
راوستل وراوستلم V;PFV;SG;1;PST
غټ غټو ADJ;VOC;MASC;PL
راکول راکړم V;PFV;SG;1;PST;LGSPEC1
خړ خړ ADJ;NOM;MASC;PL
سپين سپينه ADJ;VOC;MASC;SG
درول درولې V;IPFV;FEM;PL;3;PST
سوړ سړو ADJ;non{NOM};MASC;PL
اړول اړوۀ V;IPFV;MASC;SG;3;PST
غونډ غونډ ADJ;non{NOM};MASC;SG
راوستل راوستلي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
پايول پايولی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
بايلل بايلي وو V;PFV;MASC;PL;3;PST;LGSPEC2
غړومبل وغړومبې V;PFV;SG;2;PRS
لاريون لاريونونو N;VOC;PL
لامبل ولامبو V;PFV;PL;1;PRS
ټاپو ټاپوګان N;NOM;PL
غوږ نيول وغوږ نيولو V;PFV;PL;1;PST
دېګ دېګ N;non{NOM};SG
اغوستل اغوندﺉ V;IPFV;PL;2;PRS;LGSPEC1
خت خت N;NOM;SG
اغوستل اغوستلی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
پوهېدل پوهېږي V;IPFV;MASC;SG;3;PRS
غړومبل غړومبلي وئ V;PFV;PL;2;PST;LGSPEC2
اخښل اخښله V;IPFV;FEM;SG;3;PST
ګټل وګټم V;PFV;SG;1;PRS
پخول پخولۀ V;IPFV;MASC;PL;3;PST
غږېدل غږېدلي يئ V;PFV;PL;2;PRS;LGSPEC2
خړ خړه ADJ;NOM;FEM;SG
دعوه دعوې N;VOC;SG
بدلول به بدل کړي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
راکول راکولي وئ V;PFV;PL;2;PST;LGSPEC2
جاروکښ جاروکښ N;non{NOM};SG
بايلل بايلی وم V;PFV;MASC;SG;1;PST;LGSPEC2
داړل وداړل V;PFV;MASC;PL;3;PST
درېدل ودرېدلو V;PFV;PL;1;PST
غپل غپلې وم V;PFV;FEM;SG;1;PST;LGSPEC2
ځوان ځوانان N;NOM;PL
کول كړلم V;PFV;SG;1;PST
ژباړل وژباړل V;PFV;MASC;PL;3;PST
لمونځ لمانځۀ N;NOM;PL
نسواري نسواري ADJ;VOC;MASC;SG
پايله پايله N;NOM;SG
تلل لاړشم V;PFV;SG;1;PRS;LGSPEC1
اوسېدل واوسېږو V;PFV;PL;1;PRS;LGSPEC1
ويشتل ولو V;IPFV;PL;1;PRS;LGSPEC1
ګرځېدل ګرځېدلې وم V;PFV;FEM;SG;1;PST;LGSPEC2
خت ختونه N;NOM;PL
پوهېدل پوهېږو V;IPFV;PL;1;PRS;LGSPEC1
ګرد ګرد ADJ;non{NOM};MASC;SG
داړل به داړلي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
ښه ښې ADJ;NOM;FEM;PL
هګۍ هګۍ N;NOM;SG
اخيستل واخيستل V;PFV;MASC;PL;3;PST
ويشتل وولم V;PFV;SG;1;PRS;LGSPEC1
پخول پخوي V;IPFV;FEM;SG;3;PRS
غږېدل وغږېږي V;PFV;FEM;SG;3;PRS;LGSPEC1
زوی زامنو N;non{NOM};PL
داړل داړلي وئ V;PFV;PL;2;PST;LGSPEC2
ږغېدل ږغېدلې V;IPFV;FEM;PL;3;PST
زباتل وزباتي V;PFV;FEM;PL;3;PRS
دروستل درولي V;IPFV;MASC;PL;3;PRS
پاڼه پاڼې N;non{NOM};SG
ګډون ګډون N;VOC;SG
تلل به تللی يم V;PFV;MASC;SG;1;FUT;LGSPEC2
نوکغوڅی نوکغوڅو N;non{NOM};PL
غپېدل به غپېدلې يم V;PFV;FEM;SG;1;FUT;LGSPEC2
پلازمېنه پلازمېنې N;VOC;SG
غوول غوولي وئ V;PFV;PL;2;PST;LGSPEC2
هېر هېرې ADJ;non{NOM};FEM;SG
دړد دړد N;non{NOM};SG
خوړل خوړې V;IPFV;FEM;PL;3;PST;LGSPEC1
بدلول بدل كړي V;PFV;FEM;PL;3;PRS
کول كوې V;IPFV;SG;2;PRS
موندل ومومي V;PFV;MASC;SG;3;PRS
غپول غپوي V;IPFV;MASC;PL;3;PRS
ږغېدل وږغېده V;PFV;FEM;SG;3;PST;LGSPEC1
نيمبو نيمبوانو N;non{NOM};PL
اورېدل واورېدلم V;PFV;SG;1;PST
درملتون درملتانۀ N;NOM;PL
اچول واچوي V;PFV;FEM;SG;3;PRS
غپول وغپول V;PFV;MASC;PL;3;PST
ګرځېدل وګرځېږم V;PFV;SG;1;PRS;LGSPEC1
وګړواکي وګړواکيو N;VOC;PL
روغتون روغتنو N;VOC;PL
لمسول لمسولې V;IPFV;FEM;PL;3;PST
خوړل خوړلې وې V;PFV;FEM;SG;2;PST;LGSPEC2
خوړل خوړلې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
پوهېدل پوهېده V;IPFV;FEM;SG;3;PST;LGSPEC1
بخښل بخښي V;IPFV;FEM;SG;3;PRS
غوول غوولي يئ V;PFV;PL;2;PRS;LGSPEC2
پوهېدل پوهېدلو V;IPFV;PL;1;PST
بلل بللي يو V;PFV;PL;1;PRS;LGSPEC2
کتل کتلۀ V;IPFV;MASC;PL;3;PST
ښه ښو ADJ;VOC;FEM;PL
لامبل لامبي وو V;PFV;MASC;PL;3;PST;LGSPEC2
اخښل اخښلی وم V;PFV;MASC;SG;1;PST;LGSPEC2
ژوندی ژونديو ADJ;non{NOM};MASC;PL;LGSPEC1
ګرځېدل به ګرځېدلی يې V;PFV;MASC;SG;2;FUT;LGSPEC2
ورشو ورشو N;NOM;SG
اچول اچوي V;IPFV;MASC;SG;3;PRS
داړل به داړلی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
غپول غپولي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
ژوندی ژوندۍ ADJ;NOM;FEM;PL
تړل تړي V;IPFV;FEM;PL;3;PRS
مېشت مېشتو ADJ;VOC;MASC;PL
نمونځ نمونځه N;VOC;SG
دروستل ودرولو V;PFV;PL;1;PRS;LGSPEC1
راکول راکوۀ V;IPFV;MASC;SG;3;PST
لامبل ولامبل V;PFV;MASC;PL;3;PST
اورګاډی اورګاډي N;NOM;PL
زرغون زرغونو ADJ;VOC;MASC;PL
کېدل کېدﺉ V;IPFV;PL;2;PST;LGSPEC1
چاينک چاينکو N;non{NOM};PL
کتاب کتاب N;NOM;SG
لرګی لرګى N;NOM;SG
غړومبل غړومبلي دي V;PFV;FEM;PL;3;PRS;LGSPEC2
پخول پوخ كړې V;PFV;SG;2;PST
غپېدل غپېدل V;IPFV;MASC;PL;3;PST;LGSPEC1
سترګې په لار کول سترګې په لار كړي V;PFV;FEM;PL;3;PRS
اخښل به اخښلې يم V;PFV;FEM;SG;1;FUT;LGSPEC2
لاس لاسونو N;non{NOM};PL
ژباړل وژباړلو V;PFV;PL;1;PST
راوستل راوستې V;IPFV;SG;2;PST;LGSPEC1
وګړی وګړي N;NOM;PL
لوبېدل لوبېږي V;IPFV;MASC;SG;3;PRS;LGSPEC1
ګټل ګټي V;IPFV;FEM;PL;3;PRS
بنګېدل بنګېدﺉ V;IPFV;PL;2;PST;LGSPEC1
ويده ويدو ADJ;VOC;FEM;PL
ملګرې ملګرو N;VOC;PL
اورېدل واورېږم V;PFV;SG;1;PRS;LGSPEC1
اړول اړوي V;IPFV;MASC;SG;3;PRS
اخته اخته ADJ;VOC;FEM;SG
پامدور پامدورونه N;NOM;PL
ايستل وباسﺉ V;PFV;PL;2;PRS
غړومبل غړومبلې V;IPFV;SG;2;PST
دروستل ودروستو V;PFV;PL;1;PST;LGSPEC1
غوښتل وغوښتﺉ V;PFV;PL;2;PST;LGSPEC1
موندل وموندل V;PFV;MASC;PL;3;PST
غوږ نيول وغوږ نيسي V;PFV;MASC;SG;3;PRS;LGSPEC1
ژباړل وژباړم V;PFV;SG;1;PRS
اورېدل اورېدۀ V;IPFV;MASC;SG;3;PST
جنګ جنګونه N;NOM;PL
کول كړلې V;PFV;FEM;PL;3;PST
موندل موندلي يو V;PFV;PL;1;PRS;LGSPEC2
پايول وپايوۀ V;PFV;MASC;SG;3;PST
سترګه سترګې N;non{NOM};SG
لوی لویونه N;NOM;PL
نارنجي نارنجي ADJ;VOC;FEM;PL
غوښتل غوښتلې وې V;PFV;FEM;PL;3;PST;LGSPEC2
اوسېدل واوسېدې V;PFV;FEM;PL;3;PST;LGSPEC1
اغږل اغږي V;IPFV;MASC;SG;3;PRS
پروت پروته ADJ;VOC;MASC;SG
بدلاری بدلاريو ADJ;non{NOM};FEM;PL;LGSPEC1
درول ودروۀ V;PFV;MASC;SG;3;PST
غوول غوولم V;IPFV;SG;1;PST
تېرۀ تېرو ADJ;non{NOM};FEM;PL
انار انار N;non{NOM};SG
لمانځل لمانځلي وو V;PFV;PL;1;PST;LGSPEC2
موندل موندلی وې V;PFV;MASC;SG;2;PST;LGSPEC2
بدلېدل بدل شوم V;PFV;SG;1;PST
بايلل به بايلې يې V;PFV;FEM;SG;2;FUT;LGSPEC2
راکول راکوه V;IPFV;FEM;SG;3;PST;LGSPEC1
ږغېدل وږغېدې V;PFV;FEM;PL;3;PST;LGSPEC1
اتڼ اتڼ N;non{NOM};SG
داړل داړلي يئ V;PFV;PL;2;PRS;LGSPEC2
هېر هېرو ADJ;VOC;FEM;PL
کتل وګورې V;PFV;SG;2;PRS;LGSPEC1
كوتره كوترو N;non{NOM};PL
تلل تللي ول V;PFV;MASC;PL;3;PST;LGSPEC2
درېدل ياست V;PFV;PL;2;PRS;LGSPEC2
اورېدل واورېدلۀ V;PFV;MASC;PL;3;PST
اچول اچولې V;IPFV;FEM;PL;3;PST
دروستل دروستو V;IPFV;PL;1;PST;LGSPEC1
راوستل راوستله V;IPFV;FEM;SG;3;PST
منځنی منځنيو ADJ;VOC;MASC;PL
پايول پايوۀ V;IPFV;MASC;SG;3;PST
برغټ برغټانو N;VOC;PL
بدلېدل بدلېدلو V;IPFV;PL;1;PST
اچول اچولې وې V;PFV;FEM;PL;3;PST;LGSPEC2
موندل وموندې V;PFV;FEM;PL;3;PST;LGSPEC1
غږېدل به غږېدلی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
تلل ځي V;IPFV;FEM;PL;3;PRS
بلل بلل V;IPFV;MASC;PL;3;PST;LGSPEC1
نياو نياوه N;VOC;SG
سپی سپي N;non{NOM};SG
بنګېدل به بنګېدلې ده V;PFV;FEM;SG;3;FUT;LGSPEC2
لوبه کول لوبه كول V;IPFV;MASC;PL;3;PST
دروستل دروستلي ول V;PFV;MASC;PL;3;PST;LGSPEC2
انځور انځورونو N;non{NOM};PL
مړۍ مړيو N;non{NOM};PL
بې سا بې سا ADJ;NOM;FEM;PL
استول استول V;IPFV;MASC;PL;3;PST
راوستل راوستۀ V;IPFV;MASC;SG;3;PST
لوبېدل ولوبېږي V;PFV;MASC;PL;3;PRS;LGSPEC1
لوبه کول لوبه كړلم V;PFV;SG;1;PST
لوبه کول لوبه كړي V;PFV;MASC;PL;3;PRS
نوملړ نوملړ N;NOM;SG
بايلل بايلې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
پروړه پروړې N;VOC;SG
څونوټ څونوټونه N;NOM;PL
پوهېدل پوهېږﺉ V;IPFV;PL;2;PRS;LGSPEC1
بدلول بدل كړو V;PFV;PL;1;PRS
اوسېدل واوسېدله V;PFV;FEM;SG;3;PST
پلورل پلوري V;IPFV;FEM;SG;3;PRS
خېل خېله N;VOC;SG
آيات آياتونو N;non{NOM};PL
لمسول لمسوم V;IPFV;SG;1;PRS
غوښتل غوښتلي دي V;PFV;FEM;PL;3;PRS;LGSPEC2
بدلېدل بدلېږي V;IPFV;MASC;SG;3;PRS
راتلل راتلې V;IPFV;FEM;PL;3;PST
بلل بولم V;IPFV;SG;1;PRS;LGSPEC1
لمسول ولمسوم V;PFV;SG;1;PRS
پلورل وپلورل V;PFV;MASC;PL;3;PST
درول به درولي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
غږېدل غږېږي V;IPFV;MASC;SG;3;PRS;LGSPEC1
راوستل راولم V;IPFV;SG;1;PRS
زباتل به زباتلی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
بايلل به بايلي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
څنګل څنګلو N;VOC;PL
غورځول غورځولی وې V;PFV;MASC;SG;2;PST;LGSPEC2
سترګې په لار کول سترګې په لار كوي V;IPFV;MASC;PL;3;PRS
مرغړی مرغړي N;non{NOM};SG
اخته اخته ADJ;NOM;MASC;SG
اغوستل اغوستلي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
لمانځل ولمانځي V;PFV;MASC;PL;3;PRS
مينه مينې N;NOM;PL
هوکړه هوکړې N;non{NOM};SG
لوبېدل لوبېږې V;IPFV;SG;2;PRS
لوبه کول لوبه كړلۀ V;PFV;MASC;PL;3;PST
ايستل وايستلﺉ V;PFV;PL;2;PST
کاپيوره کاپيورې N;NOM;PL
ارزان ارزانو ADJ;non{NOM};FEM;PL
لمسول لمسوې V;IPFV;SG;2;PRS
خوړل وخوړلۀ V;PFV;MASC;PL;3;PST
کرکره کرکرې N;non{NOM};SG
بخښل بخښي V;IPFV;MASC;PL;3;PRS
څرګند څرګندو ADJ;non{NOM};MASC;PL
جاروکښ جاروکښانو N;non{NOM};PL
ژوندی ژوندۍ ADJ;VOC;FEM;PL
څنګل څنګل N;NOM;SG
بنګېدل بنګېږم V;IPFV;SG;1;PRS;LGSPEC1
ږغېدل وږغېدۀ V;PFV;MASC;SG;3;PST
غړومبل غړومبله V;IPFV;FEM;SG;3;PST
زده کول زده كوې V;IPFV;SG;2;PRS
پخول پخوي V;IPFV;MASC;PL;3;PRS
پايول پايولې يې V;PFV;FEM;SG;2;PRS;LGSPEC2
بخښل وبخښي V;PFV;FEM;PL;3;PRS
تړل وتړلۀ V;PFV;MASC;PL;3;PST
خوړل به خوړلي يئ V;PFV;PL;2;FUT;LGSPEC2
سوړ ساړۀ ADJ;non{NOM};MASC;SG
تنور تنرو N;VOC;PL
اخيستل اخيستلي يئ V;PFV;PL;2;PRS;LGSPEC2
الوتکه الوتکې N;NOM;PL
راوستل راوستم V;IPFV;SG;1;PST;LGSPEC1
کوچنی کوچنيو ADJ;VOC;MASC;PL
بلل وبلم V;PFV;SG;1;PST;LGSPEC1
زغمل وزغمم V;PFV;SG;1;PRS
غوښتل غوښتله V;IPFV;FEM;SG;3;PST
غپل ياست V;PFV;PL;2;PRS;LGSPEC2
راوستل وراولي V;PFV;FEM;PL;3;PRS
شين شينه ADJ;VOC;MASC;SG
زغمل زغمې V;IPFV;SG;2;PRS
بايلل وبايللې V;PFV;FEM;PL;3;PST
خپه خپه ADJ;VOC;FEM;PL
زده کول زده كولو V;IPFV;PL;1;PST
ځیږ زيږه ADJ;VOC;MASC;SG
غوږ نيول وغوږ نيوﺉ V;PFV;PL;2;PST;LGSPEC1
لار لارې N;NOM;PL
کلک کلکه ADJ;VOC;MASC;SG
پرتوګ پرتوګونو N;VOC;PL
اوسېدل واوسېدۀ V;PFV;MASC;SG;3;PST;LGSPEC1
موټک وهل ووهلو V;PFV;PL;1;PST
غپول وغپوﺉ V;PFV;PL;2;PRS
موندل موندلې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
غوول وغيې V;PFV;SG;2;PRS
غوږ نيول غوږ نيولی وم V;PFV;MASC;SG;1;PST;LGSPEC2
ګرځېدل وګرځېږي V;PFV;MASC;SG;3;PRS;LGSPEC1
زباتل وزباتلو V;PFV;PL;1;PST
بدلاری بدلاريو ADJ;non{NOM};MASC;PL;LGSPEC1
درېدل درېږي V;IPFV;FEM;SG;3;PRS
غړی غړو N;non{NOM};PL
غپول غپولي وئ V;PFV;PL;2;PST;LGSPEC2
زباتل به زباتلې يې V;PFV;FEM;SG;2;FUT;LGSPEC2
ويده ويدۀ ADJ;VOC;MASC;SG
ستر سترې ADJ;non{NOM};FEM;SG
کلتور کلتور N;NOM;SG
تلل لاړل V;PFV;MASC;PL;3;PST
بدلول بدل كړې V;PFV;SG;2;PST
غوږ نيول غوږ نيول V;IPFV;MASC;PL;3;PST
لمانځل ياست V;PFV;PL;2;PRS;LGSPEC2
درول ودروي V;PFV;MASC;SG;3;PRS
کونګرى کونګرو N;VOC;PL
نيلي نيلي ADJ;NOM;MASC;SG
خوړل وخورﺉ V;PFV;PL;2;PRS;LGSPEC1
اخته اخته ADJ;non{NOM};MASC;PL
غر غره N;VOC;SG
غونډ غونډ ADJ;NOM;MASC;PL
خپسه خپسو N;VOC;PL
غورځول وغورځول V;PFV;MASC;PL;3;PST
ګرځېدل ګرځېدو V;IPFV;PL;1;PST;LGSPEC1
څپېړه څپېړې N;NOM;PL
بايلل بايلي يو V;PFV;PL;1;PRS;LGSPEC2
اغږل واغږلم V;PFV;SG;1;PST
بنګېدل به بنګېدلي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
اغږل ياست V;PFV;PL;2;PRS;LGSPEC2
اوړېدل واوړېدلﺉ V;PFV;PL;2;PST
خېل خېلونه N;NOM;PL
څپېړه څپېړو N;VOC;PL
بلل بللی و V;PFV;MASC;SG;3;PST;LGSPEC2
بلل بولي V;IPFV;MASC;PL;3;PRS;LGSPEC1
اوسېدونکې اوسېدونکې N;VOC;SG
لوبېدل ولوبېږي V;PFV;MASC;SG;3;PRS;LGSPEC1
راکول به راکولي يئ V;PFV;PL;2;FUT;LGSPEC2
ښوونکی ښوونکيه N;VOC;SG
پخول پوخ كړلۀ V;PFV;MASC;PL;3;PST
لامبل ولامبي V;PFV;FEM;SG;3;PRS
جنګيالی جنګيالۍ ADJ;non{NOM};FEM;SG;LGSPEC1
اړول اړولې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
دروستل ودرولي V;PFV;FEM;PL;3;PRS;LGSPEC1
زباتل به زباتلی يم V;PFV;MASC;SG;1;FUT;LGSPEC2
لرل ولرل V;PFV;MASC;PL;3;PST
ګړندی ګړندۍ ADJ;non{NOM};FEM;SG;LGSPEC1
خوړل خوري V;IPFV;MASC;SG;3;PRS;LGSPEC1
اخيستل واخلي V;PFV;FEM;SG;3;PRS
بدلول بدل كړم V;PFV;SG;1;PST
يونی يونو N;non{NOM};PL
غپېدل غپېدۀ V;IPFV;MASC;SG;3;PST
زغمل وزغمي V;PFV;FEM;PL;3;PRS
کلتور کلتور N;non{NOM};SG
منځنی منځنئ ADJ;non{NOM};MASC;SG;LGSPEC1
سور سرو ADJ;non{NOM};FEM;PL
ژباړل ژباړلﺉ V;IPFV;PL;2;PST
بارکزی بارکزي N;NOM;PL
تلل به تللي يئ V;PFV;PL;2;FUT;LGSPEC2
برغټ برغټه N;VOC;SG
يونی يوني N;non{NOM};SG
غپېدل وغپېږي V;PFV;MASC;SG;3;PRS;LGSPEC1
اوسېدل واوسېدې V;PFV;SG;2;PST;LGSPEC1
غپېدل وغپېږي V;PFV;FEM;PL;3;PRS
داړل داړلی و V;PFV;MASC;SG;3;PST;LGSPEC2
څکه څکه N;NOM;SG
تلل لاړم V;PFV;SG;1;PST;LGSPEC1
اغږل اغږلی وم V;PFV;MASC;SG;1;PST;LGSPEC2
درول ودرولې V;PFV;SG;2;PST
اند اندونو N;non{NOM};PL
بايلل بايلی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
پخېدل پخېدﺉ V;IPFV;PL;2;PST
زغمل زغملۀ V;IPFV;MASC;PL;3;PST
بلل بللې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
غوول به غوولي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
لوبېدل ولوبېدۀ V;PFV;MASC;SG;3;PST
نيلي نيلي ADJ;VOC;FEM;PL
هېر هېر ADJ;NOM;MASC;PL
موټک وهل وهﺉ V;IPFV;PL;2;PRS
بکاڼه بکاڼو N;non{NOM};PL
درېدل درېږي V;IPFV;FEM;PL;3;PRS;LGSPEC1
اړول اړوي V;IPFV;MASC;PL;3;PRS
پخول پخولو V;IPFV;PL;1;PST
اسماني اسماني ADJ;NOM;FEM;PL
هلک هلکانو N;VOC;PL
غپېدل غپېږي V;IPFV;FEM;PL;3;PRS
پرېکړه پرېکړې N;NOM;PL
راوستل راوستلې وې V;PFV;FEM;PL;3;PST;LGSPEC2
دود دود N;non{NOM};SG
کېدل شوۀ V;PFV;MASC;SG;3;PST
اوم اومه ADJ;VOC;MASC;SG
اچول به اچولي يو V;PFV;PL;1;FUT;LGSPEC2
زباتل زباتلۀ V;IPFV;MASC;PL;3;PST
پتخه پتخې N;non{NOM};SG
لوبېدل ولوبېدﺉ V;PFV;PL;2;PST;LGSPEC1
دارو دارو N;VOC;SG
اورېدل اورېږﺉ V;IPFV;PL;2;PRS
کونګرى کونګري N;NOM;PL
لوبېدل ولوبېدې V;PFV;FEM;PL;3;PST;LGSPEC1
اتڼ اتڼونو N;VOC;PL
مېشت مېشتو ADJ;VOC;FEM;PL
بنګېدل به بنګېدلی يې V;PFV;MASC;SG;2;FUT;LGSPEC2
غپول به غپولي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
غورځول وغورځولۀ V;PFV;MASC;PL;3;PST
نيلي نيلي ADJ;VOC;MASC;SG
بنګېدل بنګېدلې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
بربنډ بربنډو ADJ;non{NOM};FEM;PL
اوسېدل واوسېدﺉ V;PFV;PL;2;PST;LGSPEC1
اسماني اسماني ADJ;VOC;MASC;PL
غپل غپلي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
بلل به بللی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
بهېدل وبهېږم V;PFV;SG;1;PRS
اغږل اغږلې وې V;PFV;FEM;SG;2;PST;LGSPEC2
درېدل درېدلی و V;PFV;MASC;SG;3;PST;LGSPEC2
غپل وغپي V;PFV;FEM;SG;3;PRS
بهېدل وبهېږي V;PFV;FEM;PL;3;PRS
راوستل راوسته V;IPFV;FEM;SG;3;PST;LGSPEC1
جږګی جږګو N;non{NOM};PL
لرل لرو V;IPFV;PL;1;PRS
ولسي جرګه ولسي جرګه N;NOM;SG
بدلېدل بدلېږي V;IPFV;FEM;PL;3;PRS
ګټل ګټله V;IPFV;FEM;SG;3;PST
اغږل اغږم V;IPFV;SG;1;PRS
بام بامونو N;VOC;PL
موټک وهل ووهم V;PFV;SG;1;PRS
ګټل وګټل V;PFV;MASC;PL;3;PST
منټ منټونو N;VOC;PL
اړول اړولې وه V;PFV;FEM;SG;3;PST;LGSPEC2
درول به درولی يې V;PFV;MASC;SG;2;FUT;LGSPEC2
وينګ وينګونو N;non{NOM};PL
الوتل ولوتلې وې V;PFV;FEM;PL;3;PST;LGSPEC2
راکول ياست V;PFV;PL;2;PRS;LGSPEC2
لېوۀ لېوۀ N;VOC;SG
ژېړ ژېړې ADJ;non{NOM};FEM;SG
درول دروﺉ V;IPFV;PL;2;PRS
ږغېدل وږغېدله V;PFV;FEM;SG;3;PST
غپول غپولې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
غونډاری غونډارو N;VOC;PL
کېدل شوه V;PFV;FEM;SG;3;PST;LGSPEC1
کتل ګوري V;IPFV;FEM;PL;3;PRS
اسماني اسماني ADJ;non{NOM};FEM;PL
راوستل راوستلې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
بې سا بې سا ADJ;VOC;FEM;SG
بابا بابا N;non{NOM};SG
غرڅنی غرڅنۍ ADJ;non{NOM};FEM;SG
اغږل اغږې V;IPFV;SG;2;PRS
ملګری ملګرو N;non{NOM};PL
بکاڼه بکاڼو N;VOC;PL
کول كوو V;IPFV;PL;1;PRS
مېجی مېجي N;non{NOM};SG
غپېدل غپېدو V;IPFV;PL;1;PST;LGSPEC1
ګړندی ګړندي ADJ;NOM;MASC;PL
بې سا بې سا ADJ;NOM;MASC;PL
بوخت بوختې ADJ;NOM;FEM;PL
زباتل زباتلﺉ V;IPFV;PL;2;PST
کېدل کېدلې V;IPFV;SG;2;PST
بربنډ بربنډې ADJ;non{NOM};FEM;SG
بدلېدل بدل شم V;PFV;SG;1;PRS
غورځول غورځوي V;IPFV;FEM;PL;3;PRS
موټک وهل وهلې V;IPFV;FEM;PL;3;PST
راتلل راغلو V;PFV;PL;1;PST
اخښل اغږم V;IPFV;SG;1;PRS
ژېړ ژېړو ADJ;VOC;MASC;PL
بنګېدل وبنګېدې V;PFV;SG;2;PST;LGSPEC1
خېل خېلونو N;non{NOM};PL
لمسول لمسولﺉ V;IPFV;PL;2;PST
نړۍ نړۍ N;NOM;PL
آيات آيات N;non{NOM};SG
ورځ ورځې N;NOM;PL
غپېدل غپېږي V;IPFV;MASC;PL;3;PRS
غوږ نيول غوږ نيوې V;IPFV;FEM;PL;3;PST;LGSPEC1
غوول غوولې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
زغمل ومه V;PFV;FEM;SG;1;PST;LGSPEC2
غورځول غورځوي V;IPFV;MASC;SG;3;PRS
مشرانوجرګه مشرانوجرګې N;non{NOM};SG
بخښل بخښلې V;IPFV;SG;2;PST
ونه ونو N;VOC;PL
لامبل ولامبلۀ V;PFV;MASC;PL;3;PST
لمسول لمسولي وو V;PFV;MASC;PL;3;PST;LGSPEC2
غږېدل وغږېدلې V;PFV;SG;2;PST
غورځول غورځوو V;IPFV;PL;1;PRS
ښکنځل ښکنځﺉ V;IPFV;PL;2;PRS
مړۍ مړيو N;VOC;PL
ګټل ګټي V;IPFV;MASC;SG;3;PRS
واکمن واکمنه N;VOC;SG
ليدل ليدلې V;IPFV;SG;2;PST
غپل غپلې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
موټک وهل ووهلې V;PFV;SG;2;PST
څرګند څرګندو ADJ;non{NOM};FEM;PL
لمانځل لمانځل V;IPFV;MASC;PL;3;PST
خوړل خورې V;IPFV;SG;2;PRS;LGSPEC1
اوسېدل اوسېږې V;IPFV;SG;2;PRS;LGSPEC1
اغږل واغږم V;PFV;SG;1;PRS
اخښل اخښلې وم V;PFV;FEM;SG;1;PST;LGSPEC2
اورېدل واورېږو V;PFV;PL;1;PRS
موندل به موندلي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
غل غله N;VOC;SG
دروستل به دروستلی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
اورېدل اورېږي V;IPFV;MASC;SG;3;PRS
غږېدل غږېدلي وئ V;PFV;PL;2;PST;LGSPEC2
تلل تللې V;IPFV;FEM;PL;3;PST
اغوستل واغوستﺉ V;PFV;PL;2;PST;LGSPEC1
کېدل شوې V;PFV;FEM;PL;3;PST;LGSPEC1
ګټل وګټي V;PFV;FEM;SG;3;PRS
ګرځېدل ګرځېږې V;IPFV;SG;2;PRS
ږغېدل ږغېدلې V;IPFV;SG;2;PST
زغمل به زغملی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
کلک کلکو ADJ;VOC;FEM;PL
لامبل به لامبي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
بايلل بايلي ول V;PFV;MASC;PL;3;PST;LGSPEC2
درول درولۀ V;IPFV;MASC;PL;3;PST
غورځول غورځوم V;IPFV;SG;1;PRS
دروستل درولي V;IPFV;FEM;SG;3;PRS
غوږ نيول وغوږ نيسي V;PFV;FEM;PL;3;PRS
لرل ولري V;PFV;FEM;SG;3;PRS
کېدل کېدلې V;IPFV;FEM;PL;3;PST
غوښتل ياست V;PFV;PL;2;FUT;LGSPEC2
موندل موندلي يئ V;PFV;PL;2;PRS;LGSPEC2
ګرځېدل وګرځېږي V;PFV;MASC;PL;3;PRS
ږغېدل ږغېدو V;IPFV;PL;1;PST;LGSPEC1
پوڅه پوڅو N;non{NOM};PL
بې سا بې سا ADJ;NOM;MASC;SG
بلل بللی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
غوول غيي V;IPFV;FEM;PL;3;PRS;LGSPEC1
بدلول بدل كړلې V;PFV;SG;2;PST
پښتنه پښتنې N;non{NOM};SG
لمانځل لمانځلم V;IPFV;SG;1;PST
راوستل به راوستلی يم V;PFV;MASC;SG;1;FUT;LGSPEC2
ګرځېدل ګرځېږﺉ V;IPFV;PL;2;PRS;LGSPEC1
اچول اچوي V;IPFV;FEM;SG;3;PRS
پلورل پلورلو V;IPFV;PL;1;PST
غر غرونو N;VOC;PL
پلورل پلورلې وې V;PFV;FEM;SG;2;PST;LGSPEC2
پايول وپايولې V;PFV;SG;2;PST
ږيره ږيرو N;VOC;PL
خړ خړو ADJ;VOC;FEM;PL
اخيستل اخيستلي وو V;PFV;MASC;PL;3;PST;LGSPEC2
اوسېدل اوسېږي V;IPFV;MASC;PL;3;PRS;LGSPEC1
ورور وروره N;non{NOM};SG
اوسېدل اوسېدلۀ V;IPFV;MASC;PL;3;PST;LGSPEC1
پايول وپايوي V;PFV;FEM;PL;3;PRS
الوتل ولوتلي وو V;PFV;PL;1;PST;LGSPEC2
اخښل واخښۀ V;PFV;MASC;SG;3;PST
دړ دړونو N;non{NOM};PL
پايول پايولم V;IPFV;SG;1;PST
درېدل ودرېدلۀ V;PFV;MASC;PL;3;PST;LGSPEC1
ښکار ښکار N;NOM;SG
موټک وهل وهو V;IPFV;PL;1;PRS
پلورل پلورله V;IPFV;FEM;SG;3;PST
ښکنځل ښکنځي V;IPFV;FEM;PL;3;PRS
کوڼ کڼې ADJ;NOM;FEM;PL
بنګېدل وبنګېدلﺉ V;PFV;PL;2;PST
اخښل واغږي V;PFV;FEM;PL;3;PRS
اسمان اسمانونه N;NOM;PL
استول به استولي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
غږېدل غږېدلې وې V;PFV;FEM;SG;2;PST;LGSPEC2
دعوه دعوو N;non{NOM};PL
سيلۍ سيلۍ N;NOM;SG
غرڅنی غرڅنو ADJ;NOM;MASC;PL
ګرځېدل ګرځېدلی دی V;PFV;MASC;SG;3;PRS;LGSPEC2
پخول پخې كړې V;PFV;FEM;PL;3;PST
پتنګ پتنګ N;non{NOM};SG
راوستل راوستې V;IPFV;FEM;PL;3;PST;LGSPEC1
استول به استولې ده V;PFV;FEM;SG;3;FUT;LGSPEC2
ويشتل ويشتلۀ V;IPFV;MASC;PL;3;PST;LGSPEC1
اچول اچوﺉ V;IPFV;PL;2;PRS
ږغېدل وږغېدلې V;PFV;SG;2;PST
غوږ نيول غوږ نيوو V;IPFV;PL;1;PST;LGSPEC1
ګرځېدل ګرځېدلی وې V;PFV;MASC;SG;2;PST;LGSPEC2
منځنی منځنيه ADJ;VOC;MASC;SG
نيمبو نيمبوان N;NOM;PL
سږى سږي N;NOM;PL
دروستل ودرولي V;PFV;MASC;SG;3;PRS
ږغېدل وږغېږې V;PFV;SG;2;PRS;LGSPEC1
ويشتل وويشتلې V;PFV;SG;2;PST
څرګند څرګندې ADJ;VOC;FEM;SG
اخيستل به اخيستلې يې V;PFV;FEM;SG;2;FUT;LGSPEC2
تلل لاړ شي V;PFV;MASC;PL;3;PRS
دود دود N;NOM;SG
اوړېدل اوړېدلم V;IPFV;SG;1;PST
اورلوبه اورلوبو N;non{NOM};PL
غوښتل وغواړي V;PFV;FEM;SG;3;PRS;LGSPEC1
زغمل به زغملی يم V;PFV;MASC;SG;1;FUT;LGSPEC2
موندل موندلې V;IPFV;SG;2;PST
لمسول لمسول V;IPFV;MASC;PL;3;PST
ګټل وګټلې V;PFV;FEM;PL;3;PST
غړومبل ياست V;PFV;PL;2;PRS;LGSPEC2
درول درولي دي V;PFV;FEM;PL;3;PRS;LGSPEC2
ګنډل ګنډي V;IPFV;MASC;SG;3;PRS
اچول واچولم V;PFV;SG;1;PST
بلل بولﺉ V;IPFV;PL;2;PRS;LGSPEC1
لمانځل ولمانځي V;PFV;FEM;SG;3;PRS
راکول راکول V;IPFV;MASC;PL;3;PST
درول ودرولۀ V;PFV;MASC;PL;3;PST
غړومبل به غړومبلی يې V;PFV;MASC;SG;2;FUT;LGSPEC2
تلل لاړشي V;PFV;MASC;SG;3;PRS;LGSPEC1
غږېدل وغږېدلم V;PFV;SG;1;PST
ګرځېدل وګرځېدلې V;PFV;SG;2;PST
راوستل وراولې V;PFV;SG;2;PRS;LGSPEC1
لرګی لرګي N;NOM;PL
ګرځېدل ګرځېږم V;IPFV;SG;1;PRS;LGSPEC1
پايول پايولي وو V;PFV;MASC;PL;3;PST;LGSPEC2
لوی لوی N;non{NOM};SG
غوول وغيي V;PFV;FEM;PL;3;PRS
کول كړلﺉ V;PFV;PL;2;PST
غپول وغپوله V;PFV;FEM;SG;3;PST
کرکره کرکرو N;VOC;PL
زغمل زغملي ول V;PFV;MASC;PL;3;PST;LGSPEC2
ځواک ځواکونو N;VOC;PL
کوچنی کوچنئ ADJ;non{NOM};MASC;SG;LGSPEC1
داړل وداړله V;PFV;FEM;SG;3;PST
راکول راکول V;IPFV;MASC;PL;3;PST;LGSPEC1
غوږ نيول غوږ نيسم V;IPFV;SG;1;PRS;LGSPEC1
پخول پاخۀ کړي يئ V;PFV;PL;2;PRS;LGSPEC2
ټينګ ټينګه ADJ;NOM;FEM;SG
غوښتل غوښتل V;IPFV;MASC;PL;3;PST;LGSPEC1
هګۍ هګۍ N;non{NOM};SG
اچول اچولې وه V;PFV;FEM;SG;3;PST;LGSPEC2
غورځول غورځولو V;IPFV;PL;1;PST
بخښل وبخښې V;PFV;SG;2;PRS
خوړل به خوړلي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
غړومبل وغړومبم V;PFV;SG;1;PRS
غوول وغيې V;PFV;SG;2;PRS;LGSPEC1
ليدل ويني V;IPFV;MASC;SG;3;PRS
استول استولي يئ V;PFV;PL;2;PRS;LGSPEC2
راکول راکړي V;PFV;FEM;PL;3;PRS
غپېدل وغپېدو V;PFV;PL;1;PST;LGSPEC1
بدلېدل بدل شولو V;PFV;PL;1;PST
کب کبانو N;VOC;PL
الوتل الوتلو V;IPFV;PL;1;PST
بخښل بخښي V;IPFV;FEM;PL;3;PRS
مرغړی مرغړى N;NOM;SG
زباتل زباتلې وم V;PFV;FEM;SG;1;PST;LGSPEC2
ګرد ګرد ADJ;NOM;MASC;PL
راوستل راوستلی يې V;PFV;MASC;SG;2;PRS;LGSPEC2
بايلل بايلي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
استول واستوۀ V;PFV;MASC;SG;3;PST
زده کول زده كوي V;IPFV;MASC;SG;3;PRS
کورنۍ کورنۍ N;NOM;PL
ګرځېدل به ګرځېدلي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
ويشتل ولي V;IPFV;FEM;PL;3;PRS;LGSPEC1
درول ودروي V;PFV;FEM;SG;3;PRS
ښه ښۀ ADJ;NOM;MASC;SG
ژبکۍ ژبکيو N;non{NOM};PL
پلورل پلورلي وو V;PFV;MASC;PL;3;PST;LGSPEC2
ځيرک ځيرکې ADJ;NOM;FEM;PL
سترګې په لار کول سترګې په لار كړلې V;PFV;SG;2;PST
ګړندی ګړنديه ADJ;VOC;MASC;SG
ښامار ښامار N;NOM;SG
پايول وپايولم V;PFV;SG;1;PST
ولسولي ولسولۍ N;non{NOM};SG
تانوکی تانوکى N;NOM;SG
پلورل به پلورلي دي V;PFV;FEM;PL;3;FUT;LGSPEC2
درول درولی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
انګوړی انګوړي N;non{NOM};SG
کوچنی کوچني ADJ;non{NOM};MASC;SG
اچول اچولې يم V;PFV;FEM;SG;1;PRS;LGSPEC2
ګټل ګټلﺉ V;IPFV;PL;2;PST
ذکر ذکرونه N;NOM;PL
تړل تړلو V;IPFV;PL;1;PST
ارزان ارزانو ADJ;VOC;MASC;PL
راکول به راکولی دی V;PFV;MASC;SG;3;FUT;LGSPEC2
خوړل خوړله V;IPFV;FEM;SG;3;PST
خپسه خپسو N;non{NOM};PL
ګړندی ګړندئ ADJ;non{NOM};MASC;SG;LGSPEC1
غپېدل به غپېدلی يې V;PFV;MASC;SG;2;FUT;LGSPEC2
کېدل کېدل V;IPFV;MASC;PL;3;PST;LGSPEC1
موندل ومومي V;PFV;FEM;PL;3;PRS
الوتل ولوتلي وو V;PFV;MASC;PL;3;PST;LGSPEC2
ګټل ګټي V;IPFV;MASC;PL;3;PRS
ږغېدل ږغېږم V;IPFV;SG;1;PRS;LGSPEC1
ګرځېدل ګرځېدله V;IPFV;FEM;SG;3;PST
ځیږ زيږه ADJ;NOM;FEM;SG
غپېدل به غپېدلي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
بدلېدل بدلېدﺉ V;IPFV;PL;2;PST
غپېدل غپېږﺉ V;IPFV;PL;2;PRS;LGSPEC1
ورشو ورشو N;non{NOM};SG
پخول ياست V;PFV;PL;2;PRS;LGSPEC2
الوتکه الوتکو N;non{NOM};PL
غوږ نيول غوږ نيسي V;IPFV;FEM;PL;3;PRS
غږېدل وغږېدله V;PFV;FEM;SG;3;PST
اند اند N;non{NOM};SG
درول درولې ده V;PFV;FEM;SG;3;PRS;LGSPEC2
اغږل واغږي V;PFV;FEM;PL;3;PRS
موندل ومومو V;PFV;PL;1;PRS;LGSPEC1
بخښل وبخښلې V;PFV;FEM;PL;3;PST
پرتوګ پرتوګ N;non{NOM};SG
لوڅ لوڅ ADJ;NOM;MASC;PL
اغوستل واغوندﺉ V;PFV;PL;2;PRS;LGSPEC1
بته بته N;NOM;SG
غږېدل وغږېدې V;PFV;FEM;PL;3;PST;LGSPEC1
بنګېدل وبنګ ېدلې V;PFV;FEM;PL;3;PST
چوپړ چوپړ N;NOM;SG
غږېدل غږېدﺉ V;IPFV;PL;2;PST;LGSPEC1
ګرځېدل ګرځېدلم V;IPFV;SG;1;PST
غږېدل غږېدلې وې V;PFV;FEM;PL;3;PST;LGSPEC2
پوهېدل پوهېږي V;IPFV;FEM;SG;3;PRS
تلل تللي وئ V;PFV;PL;2;PST;LGSPEC2
الوتل والوزي V;PFV;MASC;PL;3;PRS
غپېدل به غپېدلي يو V;PFV;PL;1;FUT;LGSPEC2
پخېدل پخې شولې V;PFV;FEM;PL;3;PST
غوښه غوښې N;VOC;SG
خوټه خوټو N;VOC;PL
مينه مينې N;VOC;SG
پخېدل پوخ شولم V;PFV;SG;1;PST
لاريون لاريونونو N;non{NOM};PL
زباتل به زباتلی يې V;PFV;MASC;SG;2;FUT;LGSPEC2
زغمل وزغمې V;PFV;SG;2;PRS
اخيستل ياست V;PFV;PL;2;FUT;LGSPEC2
سپنج سپنج N;non{NOM};SG
غوښتل وغوښتم V;PFV;SG;1;PST;LGSPEC1
ګنډل وګنډم V;PFV;SG;1;PRS
واټ واټه N;VOC;SG
موندل مومو V;IPFV;PL;1;PRS
اوسېدل واوسېدلو V;PFV;PL;1;PST
الوتل ولوتلی وې V;PFV;MASC;SG;2;PST;LGSPEC2
غونډاری غونډاريه N;VOC;SG
منو منوګانو N;non{NOM};PL
تود تاودۀ ADJ;non{NOM};MASC;SG
ګرد ګردې ADJ;non{NOM};FEM;SG
لامبل لامبي V;IPFV;MASC;SG;3;PRS
ږغېدل ږغېدﺉ V;IPFV;PL;2;PST;LGSPEC1
غپل غپلې وې V;PFV;FEM;SG;2;PST;LGSPEC2
راتلل راشي V;PFV;FEM;PL;3;PRS
راوستل راولې V;IPFV;SG;2;PRS;LGSPEC1
استول استولی يم V;PFV;MASC;SG;1;PRS;LGSPEC2
خپسه خپسې N;non{NOM};SG
موندل موندلې وه V;PFV;FEM;SG;3;PST;LGSPEC2
اړول اړولي وو V;PFV;PL;1;PST;LGSPEC2
اوسېدل واوسېږي V;PFV;FEM;PL;3;PRS
پخول به پخه کړې يم V;PFV;FEM;SG;1;FUT;LGSPEC2
ږغېدل وږغېږې V;PFV;SG;2;PRS
بلل به بللي دي V;PFV;MASC;PL;3;FUT;LGSPEC2
لمسول لمسولي دي V;PFV;MASC;PL;3;PRS;LGSPEC2
غپول وغپولۀ V;PFV;MASC;PL;3;PST
لوبېدل ولوبېدو V;PFV;PL;1;PST;LGSPEC1
راوستل وراوستلې V;PFV;FEM;PL;3;PST
پروت پرته ADJ;NOM;FEM;SG
راوستل راوستﺉ V;IPFV;PL;2;PST;LGSPEC1
زباتل وزباتلې V;PFV;FEM;PL;3;PST
کول كړې V;PFV;SG;2;PST
لمانځل به لمانځلې يې V;PFV;FEM;SG;2;FUT;LGSPEC2
|
32b23ffa9ecb91a17234d0426a6f2d88e95939be
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/226/CH13/EX13.10/example10_sce.sce
|
f64c2d193b9e4f38908c71e1ceca48664e9f4e01
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 371
|
sce
|
example10_sce.sce
|
//chapter 13
//example 13.10
//page 570
printf("\n")
printf("given")
hfemin=100;hfemax=400;hiemin=2*10^3;hiemax=5*10^3;Rc=12*10^3;Rl=120*10^3;Re1=150
disp(" voltage gain at extreme value ")
Avmax=(hfemax*((Rc*Rl)/(Rc+Rl)))/(hiemax+Re1*(1+hfemax))
Avmin=(hfemin*((Rc*Rl)/(Rc+Rl)))/(hiemin+Re1*(1+hfemin))
disp("approximate voltage gain")
Av=((Rc*Rl)/(Rc+Rl))/Re1
|
cd259033991764d54158e7713d339ecff4513210
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1319/CH6/EX6.13/6_13.sce
|
704b3a0e4d8bae27cd795f3db7bcb988001d7c47
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 426
|
sce
|
6_13.sce
|
//Voltage between feeder and bus bar in a series generator
clc;
clear;
V=50;
I=200;
Rf=0.3; // Feeder resistance
//Various Currents
I1=160;
I2=50;
deff('y=vol(x)','y=(x*Rf)-(V*x/I)') // Function to calculate the voltages
Va=vol(I1);
Vb=vol(I2);
printf('The voltage between the far end of the feeder and the bus bar at a current of \n')
printf('a) 160A = %g V \n',Va)
printf('b) 50A = %g V \n',Vb)
|
5adab9564d8415ed2a85c8a5594d52dfb59e72b3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1385/CH5/EX5.2/5_2.sce
|
9beb8f2bb911973d5fa5054a741b9a03eeec23f9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 204
|
sce
|
5_2.sce
|
clc
//initialisation of variables
T= -0.2 //C
T1= 25 //C
T2= 1.86 //C
R= 0.082 //li-atm per mole per degree
//CALCULATIONS
P= -T*R*(T1+273)/T2
//RESULTS
printf (' osmotic pressure= %.2f atm',P)
|
ce83cdf812f4e2ad489b3d140ff585fb33268d0b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3769/CH21/EX21.8/Ex21_8.sce
|
abafdda0a41c9926efa6fe911c8a99eb033600b8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 129
|
sce
|
Ex21_8.sce
|
clear
//Given
b2=0.4
b1=0.6
l1=5000
//Calculation
l2=(b2*2*l1)/b1
//Result
printf("\n Wavelength of the light is %0.0f A",l2)
|
d5dd1ad85b788097b8dfa63f830e897bdd5a155f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/536/CH12/EX12.3/Example_12_3.sce
|
58a18d17dd800677ff4f06707be3539214a45e98
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,696
|
sce
|
Example_12_3.sce
|
clc;
clear;
printf("\n Example 12.3\n");
u=3.5; //Velocity of water
d=25e-3; //Diameter of the pipe
l=6; //Length of the pipe
T1=300; //Temperature at enterance
T2=330; //Temperature at exit
rho=1000; //density of water at 310 K
Meu=0.7e-3; //Viscosity of water at 310 K
//Taking the fluid properties at 310 K and assuming that fully developed flow exists
Cp=4.18e3; //heat capapcity
k=0.65; //Thermal conductivity
Re=d*u*rho/Meu;
Pr=Cp*Meu/k;
printf("\n (a) Reynolds analogy");
h1=0.032*(Re^-0.25)*Cp*rho*u;//....Equation 12.139
printf("\n h = %.2f kW/m^2 K",h1*1e-3);
// on solving we get final equation as
theta_dash1=330-10^(log10(30)-(0.0654*h1*1e-3/2.303));
printf("\n The outlet temperature = %.1f K",theta_dash1)
printf("\n\n (b) Taylor Prandtl Equation");
h2=0.032*(Re^-0.25)*(1+2*Re^(-1/8)*(Pr-1))^-1*Cp*rho*u;
printf("\n h = %.2f kW/m^2 K",h2*1e-3);
// on solving we get final equation as
theta_dash2=330-10^(log10(30)-(0.0654*h2*1e-3/2.303));//....Equation 12.140
printf("\n The outlet temperature = %.1f K",theta_dash2)
printf("\n\n (c) Universal velocity profile equation");
h3=0.032*(Re^-0.25)*(1+0.82*Re^(-1/8)*((Pr-1)+log(0.83*Pr+0.17)))^-1*Cp*rho*u;//...equation 12.141
printf("\n h = %.2f kW/m^2 K",h3*1e-3);
// on solving we get final equation as
theta_dash3=330-10^(log10(30)-(0.0654*h3*1e-3/2.303));
printf("\n The outlet temperature = %.1f K",theta_dash3)
printf("\n\n (d) Nu=0.023*Re^0.8*Pr^0.33");
h4=k/d*0.023*Re^0.8*Pr^0.33;
printf("\n h = %.2f kW/m^2 K",h4*1e-3);
// on solving we get final equation as
theta_dash4=330-10^(log10(30)-(0.0654*h4*1e-3/2.303));
printf("\n The outlet temperature = %.1f K",theta_dash4)
|
d8a3bab8584cd13aa34195f332a511684770e8bb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1271/CH1/EX1.48/example1_48.sce
|
7a9118d16a904bf4ab661c2dd06ac86ff9d73e2d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 374
|
sce
|
example1_48.sce
|
clc
// Given That
x = 6e-5 // distance moved by movable mirror in meter
N = 200 // no. of fringes crossed the field of view
// Sample Problem 48 on page no. 1.57
printf("\n # PROBLEM 48 # \n")
lambda = (2 * x) / N // calculation for wavelength of light
printf("\n Standard formula used \n lambda = (2 * X) / N. \n")
printf("\n Wavelength of light = %f A.",lambda * 1e10)
|
f168104b580addb7764eddb736095b9649370995
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1784/CH30/EX30.5/example5.sce
|
8f92bef85619ea4645dc99b25169a8265e5846ab
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 735
|
sce
|
example5.sce
|
//chapter 30
//example 5
clc
//given
epsilon0=8.85*10^-12 //coul2/nt-m2
A=100*10^-4//area of the plate in square meter
d=1*10^-2 //separation b/w plates in meter
b=5*10^-3 //thickness of dielectric lab in meter
V0=100//in volts
k=7
//(a)
C0=epsilon0*A/d
disp(C0,"(a)Capacitance before the slab is inserted in farad is")
//(b)
q=C0*V0
disp(q,"(b)Free charge in coul is")
//(c)
E0=q/(epsilon0*A)
disp(E0,"(c)Electric field strength in the gap in volts/meter is")
//(d)
E=q/(k*epsilon0*A)
disp(E,"(d)Electric field strength in the dielectric in volts/meter is")
//(e)
//Refer to fig30-12
V=E0*(d-b)+E*b
disp(V,"(e)Potential difference between the plates in volts is")
//(f)
C=q/V
disp(C,"Capacitance with the slab in place in farads is")
|
9628073fe61bad7cfa9da9ea241397bb2db863e3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2534/CH3/EX3.2/Ex3_2.sce
|
2c7b44726e108490af0ae50268ef69babf42f02d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 288
|
sce
|
Ex3_2.sce
|
//Ex3_2
clc
E = 50*10^3
e = -1.6*10^-19
N = 10^6
F = N*e*E
disp("E = "+string(E)+"az V/m")//value of Electric field applied
disp("e = "+string(e)+"C")//value of eletron charge
disp("N = "+string(N))//total number of charge
disp("F = NeE = "+string(F)+"az N")//force on electron
|
f680910451009801e55618b67103877fcddcafb8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3812/CH1/EX1.7.e/1_7_e.sce
|
38db62da22816b39210455b29df5dc77c3c512df
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 238
|
sce
|
1_7_e.sce
|
//Example 1.7<e>
//draw the waveform of the signal x1(t)=r(-3t)
clc;
clear all;
t=-10:.001:10;
for i=1:length(t)
if t(i)>=0 then
x(i)=-3*t(i);
else
x(i)=0;
end
end
//figure
plot2d(x,t);
xtitle('Required figure','t','x(t)')
|
ce10d3cb7667c2502d37d4bf9fab8a4b6744196e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1964/CH4/EX4.4/ex4_4.sce
|
4a41254bfa8b4a10addcfbdfd18e5d6967489d99
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 307
|
sce
|
ex4_4.sce
|
//Chapter-4, Example 4.4, Page 133
//=============================================================================
clc
clear
//CALCULATIONS
f=60;
Im=120;
i=96;
t=asin(i/Im)/(2*%pi*60);
mprintf("time is %1.5f sec",t)
//=================================END OF PROGRAM==============================
|
73de946d92b3cf115f0fd3ec583177192f1d4505
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1952/CH13/EX13.3.14/Ex3_14.sce
|
244942121e5cfec51611c6c86b25ffc4207d9edd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 950
|
sce
|
Ex3_14.sce
|
// Additional solved numerical questions , Example(set 3) 14 , pg 358
Er1=1.0000684 //Dielectric constant (for sum 14_a_2)
N=2.7*10^25 //(in atoms/m^3)
E0=8.85*10^-12 //permittivity of free space (in F/m)
Er2=6 //dielectric constant (for sum 14_a_3)
E=100 //electric field intensity (in V/m) (for sum 14_a_3)
A=200*10^-4 //area (in m^2)
Er3=3.7 //dielectric constant (for sum 14_b_2)
d=10^-3 //thickness (in m)
V=300 //electric potential (in V)
Alpha_e=(E0*(Er1-1))/N //electronic polarization
R=(Alpha_e/(4*%pi*E0))^(1/3) //radius of atom
P=E0*(Er2-1)*E //polarization
C=(E0*Er3*A)/d //capacitance
E1=V/d //electric flux density
printf("Electronic polarization (in F*m^2)")
disp(Alpha_e)
printf("Radius of He atom(in m)")
disp(R)
printf("polarization(in C/m^2)")
disp(P)
printf("capacitance(in F)")
disp(C)
printf("Electric flux density (in V/m)")
disp(E1)
|
a872a2edf647f8758d24c32c7c2d76c3302f5b9a
|
5bcc7d78eeb607f77d78d89c7ac8be69ea09e01b
|
/amaroK/algo/specgram.sci
|
c6c781d9d2db5a7ba23ff97da7beec4bafaace58
|
[] |
no_license
|
nmasse-itix/ENSICAEN-Informatique-2eme-Annee
|
6b42ba5efee5cbe10a255522843756e6d8316d07
|
c1e06056ae415347817563c7454f4398605cc362
|
refs/heads/master
| 2020-07-24T02:36:52.067989
| 2019-09-11T09:40:16
| 2019-09-11T09:40:16
| 207,776,053
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 2,955
|
sci
|
specgram.sci
|
function [sm,cwp]=specgram(sec_step,sec_leng,wtype,x,y,wpar)
//<sm,cwp>=pspect(sec_step,sec_leng,wtype,x,y,wpar)
//Cross-spectral estimate between x and y if both are given
//and auto-spectral estimate of x otherwise.
//Spectral estimate obtained using the modified periodogram method
// x :data if vector, amount of input data if scalar
// y :data if vector, amount of input data if scalar
// sec_step :offset of each data window
// sec_leng :length of each data window
// wtype :window type (re,tr,hm,hn,kr,ch)
// wpar :optional window parameters
// : for wtype='kr', wpar>0
// : for wtype='ch', 0<wpar(1)<.5, wpar(2)>0
// sm :power spectral estimate in the interval [0,1]
// cwp :unspecified Chebyshev window parameter
//!
//author: C. Bunks date: 14 Sept 1988
// Copyright INRIA
[lhs,rhs]=argn(0);
cross=0;
if sec_step<sec_leng then,
//get number of sections to be used
xsize=maxi(size(x));
if xsize==1 then,
xsize=x;
end,
nsecs=int((xsize-sec_leng)/sec_step);
//construct window
if rhs==4 then,
w=window(wtype,sec_leng);
else if rhs==5 then,
if wtype=='kr' then,
wpar=y;
w=window(wtype,sec_leng,wpar);
else if wtype=='ch' then,
wpar=y;
[w,cwp]=window(wtype,sec_leng,wpar);
else,
cross=1;
w=window(wtype,sec_leng);
end,
end,
else,
[w,cwp]=window(wtype,sec_leng,wpar);
cross=1;
end,
end,
wpower=w*w';
//average periodograms
sm=0*w;
if maxi(size(x))==1 then,
ovrlp=sec_leng-sec_step;
xd=[0*ones(1,sec_step) getx(ovrlp,1)];
if cross==1 then,
yd=[0*ones(1,sec_step) gety(ovrlp,1)];
end,
for k=1:nsecs,
xd(1:ovrlp)=xd(sec_step+1:sec_leng);
xd(ovrlp+1:sec_leng)=...
getx(sec_step,sec_leng+(k-1)*sec_step+1);
xw=w.*(xd-(sum(xd)/sec_leng)*ones(1:sec_leng));
fx=fft(xw,-1);
if cross==1 then,
yd(1:ovrlp)=yd(sec_step+1:sec_leng);
yd(ovrlp+1:sec_leng)=...
gety(sec_step,sec_leng+(k-1)*sec_step+1);
yw=w.*(yd-(sum(yd)/sec_leng)*ones(1:sec_leng));
fy=fft(yw,-1);
sm=sm+fx.*conj(fy);
else,
sm=sm+real(fx.*conj(fx));
end,
end,
else,
ind=(1:sec_leng);
for k=1:nsecs,
indd=ind+(k-1)*sec_step*ones(1:sec_leng);
xd=x(indd);
xe=w.*(xd-(sum(xd)/sec_leng)*ones(1:sec_leng));
fx=fft(xe,-1);
if cross==1 then,
yd=y(indd);
ye=w.*(yd-(sum(yd)/sec_leng)*ones(1:sec_leng));
fy=fft(ye,-1);
sm=sm+fx.*conj(fy);
else,
sm=[sm ; real(fx.*conj(fx))];
end,
end,
end,
sm=sm/(nsecs*wpower);
//input error
else,
error('section step is bigger then section length');
end
endfunction
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.