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
23d2071625f7f460d009bed9942e7f1941f1f52f
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH21/EX21.16/21_16.sce
b71896dc34d2120f0e222b6b9b69d8a1d703db60
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
478
sce
21_16.sce
//Problem 21.16: Determine the torque developed by a 350 V d.c. motor having an armature resistance of 0.5 ohm and running at 15 rev/s. The armature current is 60 A. //initializing the variables: V = 350; // in Volts Ra = 0.5; // in ohms n = 15; // in rev/sec Ia = 60; // in Amperes //calculation: //Back e.m.f. E = V - Ia*Ra E = V - Ia*Ra //torque T = E*Ia/(2* n*pi) T = E*Ia/(2*n*%pi) printf("\n\n Result \n\n") printf("\n the torque exerted is %.1f Nm ",T)
b54b72a22bc922053b9265f4af7f38085a5b5ada
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH13/EX13.15/13_15.sce
4e0a951d643b238134e46b00668c42a778860871
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
799
sce
13_15.sce
//Problem 13.15: Determine the current flowing in the 2ohm resistance in the network shown in Figure 13.37(a). //initializing the variables: I = 15; // in amperes R1 = 6; // in ohms R2 = 4; // in ohms R3 = 8; // in ohms R4 = 2; // in ohms R5 = 7; // in ohms //calculation: //The 2ohm resistance branch is short-circuited as shown in Figure 13.37(b). //Figure 13.37(c) is equivalent to Figure 13.37(b). Isc = (R1/(R1 + R2))*I //the resistance ‘looking-in’ at a break made between A and B is given by r = ((R1 + R2)*(R3 + R5)/(R1 + R2 + R3 + R5)) //From the Norton equivalent network shown in Figure 13.37(e) the current in the 2ohm resistance is given by: I = (r/(r + R4))*Isc printf("\n\n Result \n\n") printf("\n the current in the 2ohm resistance is given by %.2f A",I)
134744ff88668219beac359aab3957c0962de2a1
449d555969bfd7befe906877abab098c6e63a0e8
/1859/CH3/EX3.15/exa_3_15.sce
87bcbe682746b50c79cfe1e1eed46c8236335239
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
661
sce
exa_3_15.sce
// Exa 3.15 clc; clear; close; // Given data Im= 0.2*10^-3;// in amp Rm= 10;// in ohm V=100;// in volt R= V/Im-Rm;// in ohm disp(R*10^-3,"External required resistance in kohm") Im1= 0.75*Im;//in amp V1= Im1*(R+Rm);// in volt disp(V1,"Applied voltage at instrument current 0.75 FSD in volt"); Im2= 0.5*Im;//in amp V2= Im2*(R+Rm);// in volt disp(V2,"Applied voltage at instrument current 0.5 FSD in volt"); Im3= 0.25*Im;//in amp V3= Im3*(R+Rm);// in volt disp(V3,"Applied voltage at instrument current 0.25 FSD in volt"); Im4= 0.1*Im;//in amp V4= Im4*(R+Rm);// in volt disp(V4,"Applied voltage at instrument current 0.1 FSD in volt");
d49acf5a289336dfdbec9a00db4d8cf9161138a8
449d555969bfd7befe906877abab098c6e63a0e8
/2939/CH7/EX7.5/Ex7_5.sce
a346b5b3af92e577130393279eb57655f4f03204
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
574
sce
Ex7_5.sce
// Ex7_5 clc; // Given: density=19;// in g/cc E1=200*10^6*(1.6*10^-19); // energy released per fission in J flux1=10^12;// in cm^2/s a1=590*10^-24;//fission cross-section in cm^2 Na1=6.02*10^23; // Solution: //Ntgt=volume of target*No.of atoms per cm^3 Ni=(30*((0.5)^2)*3.14*density*Na1*(0.72*10^-2))/238; Np=Ni*a1*flux1; E2=E1*Np;// Thermal energy generated in J printf("\n The thermal energy generated is = %f J",E2) // Note: There is discrepancy in answer given in the textbook. After calculations the answer comes out to be 153.850366 J
ebf0aa1a8deda68a9856df31de1a64793bccbb51
46f797517bb105c1b47783b74758079038c00129
/DateTimeTest1/nnTest1.tst
28d3c3d036f0bb15473303c169eaf1edd991f823
[]
no_license
xaltotungreat/nn-exp
499660bbfa276e95487c9ec6acaf0036c858b8bc
75d4b3a96b2dae9b8e4b54d65875d0fd0b76c91e
refs/heads/master
2020-05-18T11:31:17.157702
2015-05-31T23:14:58
2015-05-31T23:14:58
32,185,876
0
0
null
null
null
null
UTF-8
Scilab
false
false
37,908
tst
nnTest1.tst
1983,03,06,01,31,55,596,1,2,3,4,5,6,7 03,23,2013,02,48,01,129,3,1,2,4,5,6,7 04,11,21,50,04,232,0,0,2,1,4,5,6,7 10,07,1977,16,25,15,407,3,2,1,4,5,6,7 2064,03,14,14,46,39,850,1,2,3,4,5,6,7 07,17,1941,10,35,23,314,3,1,2,4,5,6,7 06,03,16,42,51,855,0,0,2,1,4,5,6,7 30,11,2005,19,05,03,064,3,2,1,4,5,6,7 1985,01,08,15,24,57,743,1,2,3,4,5,6,7 01,05,2039,02,58,05,328,3,1,2,4,5,6,7 28,02,00,26,41,197,0,0,2,1,4,5,6,7 29,01,2034,20,13,05,519,3,2,1,4,5,6,7 2054,06,08,07,44,52,363,1,2,3,4,5,6,7 04,27,1989,17,00,13,418,3,1,2,4,5,6,7 10,07,03,39,12,298,0,0,2,1,4,5,6,7 21,10,1961,04,48,11,725,3,2,1,4,5,6,7 1984,06,03,12,46,44,979,1,2,3,4,5,6,7 01,19,2006,05,32,16,242,3,1,2,4,5,6,7 11,10,10,47,50,678,0,0,2,1,4,5,6,7 16,11,1911,06,16,11,313,3,2,1,4,5,6,7 1922,05,30,16,24,34,994,1,2,3,4,5,6,7 05,24,2028,04,05,55,127,3,1,2,4,5,6,7 11,11,17,51,54,592,0,0,2,1,4,5,6,7 20,11,2011,00,50,06,786,3,2,1,4,5,6,7 2002,11,22,04,22,48,512,1,2,3,4,5,6,7 09,13,1990,19,57,24,962,3,1,2,4,5,6,7 28,07,22,32,01,240,0,0,2,1,4,5,6,7 15,03,1973,17,51,58,309,3,2,1,4,5,6,7 2067,04,17,11,29,05,184,1,2,3,4,5,6,7 07,21,2064,14,03,54,885,3,1,2,4,5,6,7 13,10,14,11,57,487,0,0,2,1,4,5,6,7 22,09,2032,13,42,38,009,3,2,1,4,5,6,7 1905,07,29,21,33,32,623,1,2,3,4,5,6,7 03,12,2057,09,02,03,574,3,1,2,4,5,6,7 26,02,08,56,52,008,0,0,2,1,4,5,6,7 15,03,1969,13,06,46,760,3,2,1,4,5,6,7 2010,05,17,08,14,31,975,1,2,3,4,5,6,7 05,28,1919,21,01,44,654,3,1,2,4,5,6,7 04,06,03,05,17,359,0,0,2,1,4,5,6,7 14,11,2078,11,28,43,004,3,2,1,4,5,6,7 1916,10,04,21,13,43,396,1,2,3,4,5,6,7 04,17,2057,02,48,31,458,3,1,2,4,5,6,7 09,09,21,56,33,373,0,0,2,1,4,5,6,7 04,06,1954,16,08,32,300,3,2,1,4,5,6,7 1918,10,24,15,03,22,064,1,2,3,4,5,6,7 01,25,2092,01,07,49,144,3,1,2,4,5,6,7 28,10,22,47,33,471,0,0,2,1,4,5,6,7 16,10,1911,19,10,01,902,3,2,1,4,5,6,7 1945,09,12,20,37,00,062,1,2,3,4,5,6,7 06,25,2064,19,40,49,949,3,1,2,4,5,6,7 01,11,07,54,36,902,0,0,2,1,4,5,6,7 13,11,2073,08,35,50,905,3,2,1,4,5,6,7 2036,02,04,16,11,57,930,1,2,3,4,5,6,7 02,04,2048,18,39,36,192,3,1,2,4,5,6,7 02,05,02,39,13,679,0,0,2,1,4,5,6,7 19,09,1936,02,43,14,147,3,2,1,4,5,6,7 1923,10,01,19,28,42,933,1,2,3,4,5,6,7 06,21,1914,10,50,54,491,3,1,2,4,5,6,7 05,06,00,56,25,002,0,0,2,1,4,5,6,7 24,06,2020,01,34,57,352,3,2,1,4,5,6,7 2033,04,19,22,51,17,130,1,2,3,4,5,6,7 11,25,1962,20,41,27,536,3,1,2,4,5,6,7 30,08,14,34,23,237,0,0,2,1,4,5,6,7 06,02,2018,19,40,06,737,3,2,1,4,5,6,7 1981,11,17,00,10,53,144,1,2,3,4,5,6,7 01,20,2095,08,34,18,670,3,1,2,4,5,6,7 24,10,05,37,12,108,0,0,2,1,4,5,6,7 20,09,2084,14,18,24,627,3,2,1,4,5,6,7 1945,01,08,04,46,16,110,1,2,3,4,5,6,7 01,25,2046,16,42,52,506,3,1,2,4,5,6,7 02,03,10,37,21,634,0,0,2,1,4,5,6,7 05,08,2084,01,44,05,466,3,2,1,4,5,6,7 1985,10,03,15,38,54,686,1,2,3,4,5,6,7 05,12,1929,14,02,15,738,3,1,2,4,5,6,7 25,08,10,28,53,446,0,0,2,1,4,5,6,7 26,09,1904,21,58,13,959,3,2,1,4,5,6,7 2023,08,13,13,48,31,134,1,2,3,4,5,6,7 10,23,1983,19,07,31,364,3,1,2,4,5,6,7 25,10,16,17,52,600,0,0,2,1,4,5,6,7 06,04,2080,05,20,46,998,3,2,1,4,5,6,7 1944,03,08,18,41,18,441,1,2,3,4,5,6,7 09,03,2023,00,38,31,528,3,1,2,4,5,6,7 21,01,12,36,53,637,0,0,2,1,4,5,6,7 21,01,1927,12,42,37,446,3,2,1,4,5,6,7 2068,11,02,13,33,21,169,1,2,3,4,5,6,7 02,02,2086,16,36,20,313,3,1,2,4,5,6,7 26,05,11,39,10,697,0,0,2,1,4,5,6,7 23,11,2093,19,28,18,826,3,2,1,4,5,6,7 1916,08,19,13,27,19,196,1,2,3,4,5,6,7 05,27,2000,04,04,42,869,3,1,2,4,5,6,7 25,10,16,26,05,696,0,0,2,1,4,5,6,7 07,01,2013,19,21,17,434,3,2,1,4,5,6,7 2056,11,05,07,51,13,837,1,2,3,4,5,6,7 02,09,2033,22,06,40,425,3,1,2,4,5,6,7 09,04,18,03,34,170,0,0,2,1,4,5,6,7 19,11,1901,13,31,19,445,3,2,1,4,5,6,7 2032,08,20,15,23,15,859,1,2,3,4,5,6,7 10,15,2000,05,25,48,897,3,1,2,4,5,6,7 22,01,19,06,43,200,0,0,2,1,4,5,6,7 03,04,2057,08,41,46,115,3,2,1,4,5,6,7 1941,10,02,06,34,17,767,1,2,3,4,5,6,7 06,22,2062,06,01,18,984,3,1,2,4,5,6,7 19,07,21,17,17,941,0,0,2,1,4,5,6,7 23,09,2066,21,07,23,289,3,2,1,4,5,6,7 1950,09,18,21,04,03,358,1,2,3,4,5,6,7 11,26,2073,15,19,06,881,3,1,2,4,5,6,7 18,01,04,14,13,666,0,0,2,1,4,5,6,7 26,03,1994,18,28,28,020,3,2,1,4,5,6,7 1940,05,13,14,08,32,959,1,2,3,4,5,6,7 03,10,2004,14,51,38,011,3,1,2,4,5,6,7 08,09,19,55,22,935,0,0,2,1,4,5,6,7 15,07,1933,11,44,40,272,3,2,1,4,5,6,7 2068,05,05,14,33,21,926,1,2,3,4,5,6,7 05,04,2033,05,46,53,438,3,1,2,4,5,6,7 07,02,05,23,49,413,0,0,2,1,4,5,6,7 09,10,1947,08,51,41,360,3,2,1,4,5,6,7 2079,11,07,07,36,33,993,1,2,3,4,5,6,7 08,13,1923,16,00,31,967,3,1,2,4,5,6,7 06,08,12,15,15,127,0,0,2,1,4,5,6,7 20,04,1950,04,08,30,973,3,2,1,4,5,6,7 1904,10,05,08,16,44,762,1,2,3,4,5,6,7 07,24,2016,12,05,33,287,3,1,2,4,5,6,7 23,01,03,42,43,462,0,0,2,1,4,5,6,7 27,11,1977,20,39,40,396,3,2,1,4,5,6,7 2018,05,10,17,43,08,197,1,2,3,4,5,6,7 09,09,2042,12,01,31,885,3,1,2,4,5,6,7 14,04,17,31,17,980,0,0,2,1,4,5,6,7 06,04,1963,18,18,02,802,3,2,1,4,5,6,7 2083,09,12,16,26,44,284,1,2,3,4,5,6,7 05,29,1991,11,14,46,891,3,1,2,4,5,6,7 05,04,08,08,04,243,0,0,2,1,4,5,6,7 21,02,1914,12,14,16,289,3,2,1,4,5,6,7 2019,07,13,12,23,15,103,1,2,3,4,5,6,7 06,10,2041,04,23,27,442,3,1,2,4,5,6,7 22,02,08,08,01,179,0,0,2,1,4,5,6,7 27,04,2016,09,04,12,704,3,2,1,4,5,6,7 2021,10,23,19,39,52,451,1,2,3,4,5,6,7 08,06,1977,15,34,11,646,3,1,2,4,5,6,7 21,08,03,13,56,148,0,0,2,1,4,5,6,7 03,11,2006,08,01,45,110,3,2,1,4,5,6,7 1983,05,23,01,09,52,807,1,2,3,4,5,6,7 05,19,2077,05,56,42,726,3,1,2,4,5,6,7 10,02,10,23,24,830,0,0,2,1,4,5,6,7 29,08,2002,22,06,27,216,3,2,1,4,5,6,7 2055,07,19,10,12,04,864,1,2,3,4,5,6,7 02,04,1925,07,24,40,472,3,1,2,4,5,6,7 26,09,01,55,25,220,0,0,2,1,4,5,6,7 29,06,1981,16,50,32,963,3,2,1,4,5,6,7 1925,03,03,12,36,57,070,1,2,3,4,5,6,7 10,20,1935,09,46,24,689,3,1,2,4,5,6,7 24,03,20,07,54,524,0,0,2,1,4,5,6,7 30,10,1988,02,02,21,953,3,2,1,4,5,6,7 2012,07,17,11,57,57,640,1,2,3,4,5,6,7 08,30,2096,11,18,05,947,3,1,2,4,5,6,7 02,07,17,26,50,511,0,0,2,1,4,5,6,7 26,08,1950,16,53,46,405,3,2,1,4,5,6,7 2098,11,24,15,28,20,256,1,2,3,4,5,6,7 10,08,1954,12,07,46,555,3,1,2,4,5,6,7 08,05,11,35,26,928,0,0,2,1,4,5,6,7 21,03,2079,05,15,41,821,3,2,1,4,5,6,7 2067,04,13,01,22,51,258,1,2,3,4,5,6,7 09,24,2011,19,50,52,364,3,1,2,4,5,6,7 22,08,13,39,31,891,0,0,2,1,4,5,6,7 20,11,2058,11,35,40,612,3,2,1,4,5,6,7 2054,01,19,13,00,31,461,1,2,3,4,5,6,7 05,01,2030,11,45,56,682,3,1,2,4,5,6,7 27,09,02,03,24,822,0,0,2,1,4,5,6,7 30,04,1927,17,06,44,551,3,2,1,4,5,6,7 1974,09,22,01,18,39,867,1,2,3,4,5,6,7 02,21,2099,15,13,26,332,3,1,2,4,5,6,7 16,02,18,55,03,342,0,0,2,1,4,5,6,7 25,08,1994,18,54,31,968,3,2,1,4,5,6,7 1935,01,28,03,53,35,434,1,2,3,4,5,6,7 11,05,2053,09,49,07,622,3,1,2,4,5,6,7 20,04,00,05,24,733,0,0,2,1,4,5,6,7 12,06,2049,06,55,05,342,3,2,1,4,5,6,7 2021,01,13,08,18,44,776,1,2,3,4,5,6,7 09,25,2014,06,03,37,805,3,1,2,4,5,6,7 22,03,14,15,01,036,0,0,2,1,4,5,6,7 25,02,1972,19,02,29,034,3,2,1,4,5,6,7 1990,02,23,20,02,31,118,1,2,3,4,5,6,7 01,17,1966,12,49,09,406,3,1,2,4,5,6,7 11,06,00,35,18,573,0,0,2,1,4,5,6,7 12,01,1979,05,07,42,697,3,2,1,4,5,6,7 1907,01,18,01,26,50,085,1,2,3,4,5,6,7 03,12,2057,07,06,58,674,3,1,2,4,5,6,7 12,07,21,42,04,708,0,0,2,1,4,5,6,7 17,09,2012,21,06,42,082,3,2,1,4,5,6,7 1922,09,25,13,19,53,940,1,2,3,4,5,6,7 03,26,1909,00,47,28,276,3,1,2,4,5,6,7 21,03,14,06,49,957,0,0,2,1,4,5,6,7 08,10,2099,05,54,43,765,3,2,1,4,5,6,7 1976,01,19,19,12,13,702,1,2,3,4,5,6,7 06,12,1966,17,00,45,279,3,1,2,4,5,6,7 23,01,19,20,08,136,0,0,2,1,4,5,6,7 07,10,2010,08,35,09,631,3,2,1,4,5,6,7 1935,11,19,22,52,41,163,1,2,3,4,5,6,7 06,24,1946,13,20,15,399,3,1,2,4,5,6,7 26,07,02,41,43,096,0,0,2,1,4,5,6,7 08,04,2077,13,42,32,749,3,2,1,4,5,6,7 1913,09,04,02,05,37,198,1,2,3,4,5,6,7 06,22,2013,06,50,26,502,3,1,2,4,5,6,7 16,09,11,27,51,739,0,0,2,1,4,5,6,7 05,01,1929,13,41,32,690,3,2,1,4,5,6,7 2010,06,27,16,12,35,930,1,2,3,4,5,6,7 04,06,1919,04,18,10,300,3,1,2,4,5,6,7 25,06,06,30,13,426,0,0,2,1,4,5,6,7 12,01,2070,13,23,35,205,3,2,1,4,5,6,7 2036,07,13,03,04,16,237,1,2,3,4,5,6,7 04,16,1968,05,42,38,293,3,1,2,4,5,6,7 17,11,02,02,58,595,0,0,2,1,4,5,6,7 08,07,1915,06,29,07,625,3,2,1,4,5,6,7 1969,11,03,01,53,00,819,1,2,3,4,5,6,7 09,07,2038,04,19,02,013,3,1,2,4,5,6,7 07,08,16,09,28,397,0,0,2,1,4,5,6,7 23,02,2099,00,31,55,296,3,2,1,4,5,6,7 1987,03,08,06,21,16,541,1,2,3,4,5,6,7 03,24,1978,05,58,26,770,3,1,2,4,5,6,7 28,04,22,42,30,410,0,0,2,1,4,5,6,7 02,09,1956,11,58,58,874,3,2,1,4,5,6,7 1951,03,07,06,21,48,032,1,2,3,4,5,6,7 03,20,2053,14,13,24,226,3,1,2,4,5,6,7 24,06,02,04,00,065,0,0,2,1,4,5,6,7 28,08,2078,07,33,03,309,3,2,1,4,5,6,7 2065,05,19,18,16,27,631,1,2,3,4,5,6,7 01,07,2009,00,23,40,270,3,1,2,4,5,6,7 02,06,09,44,03,214,0,0,2,1,4,5,6,7 20,02,1994,00,11,25,919,3,2,1,4,5,6,7 1972,04,13,12,17,35,545,1,2,3,4,5,6,7 04,01,1912,04,22,36,896,3,1,2,4,5,6,7 19,07,17,35,20,409,0,0,2,1,4,5,6,7 03,06,1983,09,38,09,019,3,2,1,4,5,6,7 2091,05,29,19,53,54,792,1,2,3,4,5,6,7 11,03,2003,06,00,25,978,3,1,2,4,5,6,7 01,10,20,48,15,834,0,0,2,1,4,5,6,7 11,10,2008,01,48,22,233,3,2,1,4,5,6,7 2083,09,14,19,06,30,829,1,2,3,4,5,6,7 11,14,2050,22,19,08,115,3,1,2,4,5,6,7 17,10,12,40,37,523,0,0,2,1,4,5,6,7 04,10,1950,19,20,16,697,3,2,1,4,5,6,7 1951,03,02,08,03,52,012,1,2,3,4,5,6,7 03,14,1908,13,34,07,019,3,1,2,4,5,6,7 20,11,06,16,33,420,0,0,2,1,4,5,6,7 30,01,2072,10,31,08,125,3,2,1,4,5,6,7 1903,01,09,21,26,29,987,1,2,3,4,5,6,7 01,02,1923,12,11,02,205,3,1,2,4,5,6,7 14,02,14,17,36,111,0,0,2,1,4,5,6,7 17,05,1900,20,27,20,841,3,2,1,4,5,6,7 2021,04,27,13,29,31,839,1,2,3,4,5,6,7 04,29,2015,11,01,50,133,3,1,2,4,5,6,7 08,01,12,41,36,555,0,0,2,1,4,5,6,7 24,09,2015,12,13,39,684,3,2,1,4,5,6,7 1936,06,28,07,23,16,403,1,2,3,4,5,6,7 06,24,2015,17,45,58,317,3,1,2,4,5,6,7 20,03,00,41,21,918,0,0,2,1,4,5,6,7 20,04,1959,07,56,56,941,3,2,1,4,5,6,7 1901,08,27,18,39,33,406,1,2,3,4,5,6,7 01,08,2073,15,53,33,319,3,1,2,4,5,6,7 06,03,00,35,56,750,0,0,2,1,4,5,6,7 18,08,1975,20,26,10,258,3,2,1,4,5,6,7 1953,03,13,10,21,15,250,1,2,3,4,5,6,7 07,02,2047,19,23,09,030,3,1,2,4,5,6,7 12,04,19,37,39,034,0,0,2,1,4,5,6,7 13,03,1986,16,24,22,850,3,2,1,4,5,6,7 1965,10,14,13,15,25,076,1,2,3,4,5,6,7 05,13,1918,09,13,35,071,3,1,2,4,5,6,7 15,05,22,31,56,342,0,0,2,1,4,5,6,7 26,06,1997,04,34,06,165,3,2,1,4,5,6,7 1950,04,25,03,15,30,455,1,2,3,4,5,6,7 06,29,1910,13,48,48,696,3,1,2,4,5,6,7 21,05,05,52,02,213,0,0,2,1,4,5,6,7 21,11,1972,14,37,05,570,3,2,1,4,5,6,7 2075,09,24,08,23,51,441,1,2,3,4,5,6,7 08,11,1975,18,50,34,092,3,1,2,4,5,6,7 02,02,11,12,07,089,0,0,2,1,4,5,6,7 18,09,2036,21,19,23,574,3,2,1,4,5,6,7 2055,10,09,18,49,10,979,1,2,3,4,5,6,7 03,11,1951,22,53,30,553,3,1,2,4,5,6,7 01,04,01,26,40,630,0,0,2,1,4,5,6,7 16,08,1926,18,21,00,522,3,2,1,4,5,6,7 2038,04,09,01,12,01,646,1,2,3,4,5,6,7 08,20,2076,20,32,35,611,3,1,2,4,5,6,7 23,07,16,09,04,996,0,0,2,1,4,5,6,7 21,11,2038,02,57,36,747,3,2,1,4,5,6,7 2004,02,20,12,10,16,484,1,2,3,4,5,6,7 03,26,2036,13,34,18,836,3,1,2,4,5,6,7 26,06,19,46,36,722,0,0,2,1,4,5,6,7 19,04,1904,17,09,00,622,3,2,1,4,5,6,7 2064,04,26,14,11,13,252,1,2,3,4,5,6,7 03,18,2055,04,06,12,676,3,1,2,4,5,6,7 21,04,13,09,57,158,0,0,2,1,4,5,6,7 12,05,1949,09,55,46,084,3,2,1,4,5,6,7 2056,05,12,18,37,29,766,1,2,3,4,5,6,7 08,18,1912,02,35,17,418,3,1,2,4,5,6,7 30,07,09,41,23,039,0,0,2,1,4,5,6,7 23,08,1901,21,54,29,719,3,2,1,4,5,6,7 1918,08,14,02,30,15,127,1,2,3,4,5,6,7 01,11,2058,01,20,38,068,3,1,2,4,5,6,7 26,07,03,26,12,652,0,0,2,1,4,5,6,7 08,09,2032,12,08,23,665,3,2,1,4,5,6,7 2059,07,15,19,48,33,531,1,2,3,4,5,6,7 11,30,2010,10,04,12,710,3,1,2,4,5,6,7 25,09,15,35,36,248,0,0,2,1,4,5,6,7 07,06,1973,00,36,18,222,3,2,1,4,5,6,7 1900,10,06,21,15,47,070,1,2,3,4,5,6,7 07,17,1934,21,54,28,696,3,1,2,4,5,6,7 07,01,05,24,34,765,0,0,2,1,4,5,6,7 01,02,2040,15,58,14,223,3,2,1,4,5,6,7 2054,08,24,00,23,17,364,1,2,3,4,5,6,7 11,27,2083,22,32,18,835,3,1,2,4,5,6,7 11,08,00,22,11,720,0,0,2,1,4,5,6,7 18,02,1986,00,11,36,974,3,2,1,4,5,6,7 2063,11,29,11,08,09,155,1,2,3,4,5,6,7 05,07,1946,04,06,23,613,3,1,2,4,5,6,7 05,07,03,18,07,091,0,0,2,1,4,5,6,7 04,08,1915,10,34,17,751,3,2,1,4,5,6,7 2013,05,24,04,43,20,998,1,2,3,4,5,6,7 07,05,1944,21,23,30,334,3,1,2,4,5,6,7 27,01,13,20,24,340,0,0,2,1,4,5,6,7 19,11,2074,09,47,20,696,3,2,1,4,5,6,7 1904,11,12,02,16,38,008,1,2,3,4,5,6,7 08,18,2055,17,03,47,032,3,1,2,4,5,6,7 21,05,06,08,41,294,0,0,2,1,4,5,6,7 03,01,2079,03,16,12,173,3,2,1,4,5,6,7 2001,06,06,05,42,20,221,1,2,3,4,5,6,7 09,11,1996,18,31,18,895,3,1,2,4,5,6,7 20,10,00,34,57,467,0,0,2,1,4,5,6,7 02,08,1909,19,35,57,563,3,2,1,4,5,6,7 2019,06,27,22,07,09,493,1,2,3,4,5,6,7 05,03,1930,18,10,35,969,3,1,2,4,5,6,7 09,05,08,48,36,548,0,0,2,1,4,5,6,7 19,04,2075,16,06,36,778,3,2,1,4,5,6,7 2073,09,02,09,22,50,024,1,2,3,4,5,6,7 11,16,1907,11,05,25,879,3,1,2,4,5,6,7 28,07,18,47,28,192,0,0,2,1,4,5,6,7 19,03,1948,20,01,23,728,3,2,1,4,5,6,7 2080,09,20,18,28,44,534,1,2,3,4,5,6,7 10,25,2038,18,43,22,385,3,1,2,4,5,6,7 14,03,15,12,00,968,0,0,2,1,4,5,6,7 19,06,1922,17,36,03,355,3,2,1,4,5,6,7 2067,11,06,21,48,27,834,1,2,3,4,5,6,7 02,22,2022,17,07,56,617,3,1,2,4,5,6,7 04,01,11,43,24,307,0,0,2,1,4,5,6,7 03,07,2069,22,07,46,864,3,2,1,4,5,6,7 1913,11,29,01,14,28,037,1,2,3,4,5,6,7 10,07,2054,00,38,33,972,3,1,2,4,5,6,7 08,01,15,46,00,537,0,0,2,1,4,5,6,7 17,07,2051,07,42,26,219,3,2,1,4,5,6,7 1937,11,20,21,03,43,935,1,2,3,4,5,6,7 02,09,1989,10,39,15,769,3,1,2,4,5,6,7 02,10,14,26,14,659,0,0,2,1,4,5,6,7 26,05,2064,22,27,19,042,3,2,1,4,5,6,7 1937,09,18,11,23,29,140,1,2,3,4,5,6,7 10,06,2056,02,12,33,942,3,1,2,4,5,6,7 25,07,16,38,28,348,0,0,2,1,4,5,6,7 11,02,2082,19,01,13,577,3,2,1,4,5,6,7 2065,04,05,22,20,03,416,1,2,3,4,5,6,7 02,11,2060,16,00,19,213,3,1,2,4,5,6,7 21,06,21,09,12,768,0,0,2,1,4,5,6,7 04,02,1901,04,34,09,497,3,2,1,4,5,6,7 2040,04,19,09,21,19,267,1,2,3,4,5,6,7 10,08,2043,14,10,46,466,3,1,2,4,5,6,7 01,05,22,35,13,164,0,0,2,1,4,5,6,7 07,05,2006,17,58,28,911,3,2,1,4,5,6,7 2093,03,24,06,17,28,254,1,2,3,4,5,6,7 11,27,2059,20,22,56,245,3,1,2,4,5,6,7 06,03,18,24,12,910,0,0,2,1,4,5,6,7 12,11,1909,03,57,12,124,3,2,1,4,5,6,7 2057,02,04,17,32,01,697,1,2,3,4,5,6,7 09,30,1934,03,22,12,633,3,1,2,4,5,6,7 04,03,13,18,39,600,0,0,2,1,4,5,6,7 05,04,1938,22,55,05,341,3,2,1,4,5,6,7 2041,06,06,20,52,05,375,1,2,3,4,5,6,7 07,16,1983,17,58,09,077,3,1,2,4,5,6,7 04,03,00,43,31,035,0,0,2,1,4,5,6,7 05,01,1914,17,21,28,747,3,2,1,4,5,6,7 2031,11,20,19,03,07,636,1,2,3,4,5,6,7 05,10,2097,19,56,47,054,3,1,2,4,5,6,7 29,04,15,31,40,459,0,0,2,1,4,5,6,7 05,04,2091,20,32,22,132,3,2,1,4,5,6,7 1922,07,23,08,01,37,783,1,2,3,4,5,6,7 03,23,1914,06,56,41,899,3,1,2,4,5,6,7 20,10,10,17,30,209,0,0,2,1,4,5,6,7 28,03,1981,09,22,10,484,3,2,1,4,5,6,7 2099,03,18,20,36,06,002,1,2,3,4,5,6,7 05,07,2060,04,46,49,498,3,1,2,4,5,6,7 06,10,15,27,58,003,0,0,2,1,4,5,6,7 21,04,2068,05,40,46,814,3,2,1,4,5,6,7 1932,04,21,02,30,12,120,1,2,3,4,5,6,7 10,30,1924,22,10,24,997,3,1,2,4,5,6,7 24,07,06,49,22,478,0,0,2,1,4,5,6,7 02,11,2071,16,09,31,783,3,2,1,4,5,6,7 1917,03,11,21,07,29,404,1,2,3,4,5,6,7 11,27,1952,14,36,12,188,3,1,2,4,5,6,7 16,08,08,06,54,199,0,0,2,1,4,5,6,7 05,01,1981,01,14,40,586,3,2,1,4,5,6,7 1929,06,01,01,14,23,245,1,2,3,4,5,6,7 11,15,1929,01,51,04,690,3,1,2,4,5,6,7 12,06,08,01,41,316,0,0,2,1,4,5,6,7 23,01,1991,16,16,20,939,3,2,1,4,5,6,7 1939,05,09,17,44,51,027,1,2,3,4,5,6,7 07,13,2025,06,00,58,633,3,1,2,4,5,6,7 25,02,13,39,03,221,0,0,2,1,4,5,6,7 08,04,2023,08,50,28,956,3,2,1,4,5,6,7 1979,08,06,13,10,15,675,1,2,3,4,5,6,7 08,27,1904,19,45,39,089,3,1,2,4,5,6,7 22,08,13,20,22,065,0,0,2,1,4,5,6,7 11,04,2033,10,13,41,151,3,2,1,4,5,6,7 1975,07,30,04,09,27,412,1,2,3,4,5,6,7 05,17,1913,11,20,00,119,3,1,2,4,5,6,7 21,09,16,07,52,745,0,0,2,1,4,5,6,7 25,09,2099,02,18,14,803,3,2,1,4,5,6,7 1974,09,23,11,31,48,001,1,2,3,4,5,6,7 08,26,2091,13,24,24,922,3,1,2,4,5,6,7 02,11,21,37,04,032,0,0,2,1,4,5,6,7 02,02,1975,21,19,01,450,3,2,1,4,5,6,7 07,09,2073,11,11,14,253,3,1,2,4,5,6,7 28,06,14,30,57,825,0,0,2,1,4,5,6,7 29,01,2026,08,03,46,309,3,2,1,4,5,6,7 2009,08,22,22,57,03,610,1,2,3,4,5,6,7 03,22,1911,19,06,55,951,3,1,2,4,5,6,7 09,08,09,08,19,149,0,0,2,1,4,5,6,7 05,06,1961,22,33,52,054,3,2,1,4,5,6,7 2066,11,02,15,06,10,296,1,2,3,4,5,6,7 11,25,1958,03,49,01,179,3,1,2,4,5,6,7 29,03,04,43,02,378,0,0,2,1,4,5,6,7 18,05,2025,05,19,00,442,3,2,1,4,5,6,7 2022,06,03,15,55,34,324,1,2,3,4,5,6,7 01,28,1938,04,13,31,702,3,1,2,4,5,6,7 10,06,11,54,07,360,0,0,2,1,4,5,6,7 01,09,2008,03,58,50,975,3,2,1,4,5,6,7 2022,08,28,10,37,42,237,1,2,3,4,5,6,7 08,27,2079,16,57,34,340,3,1,2,4,5,6,7 24,09,08,38,29,569,0,0,2,1,4,5,6,7 01,07,1906,00,29,34,945,3,2,1,4,5,6,7 2078,11,09,19,16,33,793,1,2,3,4,5,6,7 10,01,1916,03,18,10,548,3,1,2,4,5,6,7 07,04,14,27,12,137,0,0,2,1,4,5,6,7 21,10,1973,20,36,28,926,3,2,1,4,5,6,7 1961,01,24,10,54,58,642,1,2,3,4,5,6,7 09,22,2004,14,35,33,929,3,1,2,4,5,6,7 24,05,19,04,16,636,0,0,2,1,4,5,6,7 08,06,1977,15,03,38,009,3,2,1,4,5,6,7 1907,11,02,00,50,22,749,1,2,3,4,5,6,7 05,04,2090,16,44,47,368,3,1,2,4,5,6,7 15,01,10,17,42,800,0,0,2,1,4,5,6,7 15,08,2026,18,49,16,875,3,2,1,4,5,6,7 1919,06,02,04,20,31,053,1,2,3,4,5,6,7 11,21,1940,09,46,12,393,3,1,2,4,5,6,7 20,08,00,40,23,920,0,0,2,1,4,5,6,7 09,11,1964,20,53,55,079,3,2,1,4,5,6,7 1978,04,01,21,54,11,457,1,2,3,4,5,6,7 03,22,1939,02,14,15,309,3,1,2,4,5,6,7 29,10,12,45,56,534,0,0,2,1,4,5,6,7 28,05,1955,02,56,03,778,3,2,1,4,5,6,7 1950,06,11,12,08,08,590,1,2,3,4,5,6,7 09,09,2054,21,53,22,635,3,1,2,4,5,6,7 24,09,13,04,15,164,0,0,2,1,4,5,6,7 2009,10,05,20,10,33,978,1,2,3,4,5,6,7 06,14,2069,19,12,32,389,3,1,2,4,5,6,7 09,03,11,14,10,275,0,0,2,1,4,5,6,7 05,03,2059,02,13,04,340,3,2,1,4,5,6,7 1973,11,11,17,40,25,167,1,2,3,4,5,6,7 05,26,2088,06,12,52,775,3,1,2,4,5,6,7 21,02,12,24,38,340,0,0,2,1,4,5,6,7 01,10,2072,03,23,31,833,3,2,1,4,5,6,7 1908,01,13,06,02,32,075,1,2,3,4,5,6,7 07,18,2057,18,57,38,954,3,1,2,4,5,6,7 20,05,05,32,44,872,0,0,2,1,4,5,6,7 21,05,2039,17,30,07,840,3,2,1,4,5,6,7 2049,07,13,04,32,32,364,1,2,3,4,5,6,7 10,03,1904,12,12,39,611,3,1,2,4,5,6,7 10,02,21,38,00,558,0,0,2,1,4,5,6,7 17,05,1946,13,39,37,360,3,2,1,4,5,6,7 1941,09,10,03,24,50,865,1,2,3,4,5,6,7 10,19,1917,07,17,41,239,3,1,2,4,5,6,7 22,05,18,07,10,182,0,0,2,1,4,5,6,7 13,10,1967,04,36,04,361,3,2,1,4,5,6,7 1916,04,20,16,18,56,202,1,2,3,4,5,6,7 11,23,2027,17,56,39,159,3,1,2,4,5,6,7 10,11,08,49,39,828,0,0,2,1,4,5,6,7 28,11,2097,22,39,00,673,3,2,1,4,5,6,7 2008,11,07,09,01,23,569,1,2,3,4,5,6,7 08,30,2058,11,30,32,540,3,1,2,4,5,6,7 19,08,21,36,55,012,0,0,2,1,4,5,6,7 09,01,2024,04,38,39,981,3,2,1,4,5,6,7 2088,06,10,03,47,20,263,1,2,3,4,5,6,7 03,18,1923,08,17,26,892,3,1,2,4,5,6,7 23,01,22,15,39,721,0,0,2,1,4,5,6,7 19,05,1940,09,36,41,587,3,2,1,4,5,6,7 1951,06,26,05,09,00,955,1,2,3,4,5,6,7 02,13,1916,16,30,56,745,3,1,2,4,5,6,7 09,03,05,31,38,071,0,0,2,1,4,5,6,7 22,02,1985,15,10,52,732,3,2,1,4,5,6,7 2054,07,13,20,13,53,913,1,2,3,4,5,6,7 02,19,1978,07,48,06,568,3,1,2,4,5,6,7 19,01,10,33,31,208,0,0,2,1,4,5,6,7 09,04,1972,14,57,02,990,3,2,1,4,5,6,7 2051,11,17,10,11,02,316,1,2,3,4,5,6,7 01,29,2038,08,12,46,235,3,1,2,4,5,6,7 27,06,21,19,34,329,0,0,2,1,4,5,6,7 29,10,2065,16,53,38,419,3,2,1,4,5,6,7 1985,01,22,06,14,38,573,1,2,3,4,5,6,7 10,11,2005,06,42,01,767,3,1,2,4,5,6,7 07,08,18,45,26,215,0,0,2,1,4,5,6,7 25,10,2066,11,08,39,930,3,2,1,4,5,6,7 1941,01,20,04,31,32,095,1,2,3,4,5,6,7 03,23,2085,22,17,05,404,3,1,2,4,5,6,7 07,09,17,01,16,462,0,0,2,1,4,5,6,7 23,04,1973,22,10,03,586,3,2,1,4,5,6,7 1975,11,04,10,06,34,268,1,2,3,4,5,6,7 01,09,1958,19,15,01,519,3,1,2,4,5,6,7 13,10,17,01,12,677,0,0,2,1,4,5,6,7 16,11,2080,05,36,12,360,3,2,1,4,5,6,7 2009,11,12,22,33,47,483,1,2,3,4,5,6,7 05,18,2042,18,19,00,305,3,1,2,4,5,6,7 19,02,17,16,38,274,0,0,2,1,4,5,6,7 09,09,1915,03,35,17,215,3,2,1,4,5,6,7 1921,05,20,13,21,49,939,1,2,3,4,5,6,7 01,09,1984,10,05,40,656,3,1,2,4,5,6,7 01,06,13,33,05,125,0,0,2,1,4,5,6,7 23,10,1928,03,42,09,241,3,2,1,4,5,6,7 1996,06,15,22,55,40,614,1,2,3,4,5,6,7 10,06,1993,17,37,42,174,3,1,2,4,5,6,7 03,09,14,24,11,276,0,0,2,1,4,5,6,7 28,02,2077,22,27,58,971,3,2,1,4,5,6,7 1997,08,16,13,40,57,219,1,2,3,4,5,6,7 01,05,1968,09,57,27,758,3,1,2,4,5,6,7 08,11,07,00,41,102,0,0,2,1,4,5,6,7 23,05,2089,08,11,30,945,3,2,1,4,5,6,7 1974,10,16,05,13,03,176,1,2,3,4,5,6,7 02,16,2057,22,18,49,833,3,1,2,4,5,6,7 21,07,07,54,42,812,0,0,2,1,4,5,6,7 19,05,2027,01,54,28,048,3,2,1,4,5,6,7 2087,08,07,08,46,12,666,1,2,3,4,5,6,7 05,22,2027,01,32,43,833,3,1,2,4,5,6,7 15,07,13,11,08,921,0,0,2,1,4,5,6,7 08,07,2016,04,09,04,131,3,2,1,4,5,6,7 1921,01,13,03,43,03,565,1,2,3,4,5,6,7 07,03,1946,15,33,17,238,3,1,2,4,5,6,7 14,07,12,21,13,409,0,0,2,1,4,5,6,7 18,06,2089,07,50,25,956,3,2,1,4,5,6,7 2057,03,15,12,43,16,664,1,2,3,4,5,6,7 04,10,2002,11,01,26,096,3,1,2,4,5,6,7 06,01,20,02,16,577,0,0,2,1,4,5,6,7 24,08,1902,21,11,52,568,3,2,1,4,5,6,7 1945,04,24,00,57,15,902,1,2,3,4,5,6,7 10,06,2033,09,07,12,656,3,1,2,4,5,6,7 27,02,16,41,26,248,0,0,2,1,4,5,6,7 24,05,2003,22,07,43,782,3,2,1,4,5,6,7 1931,08,22,08,47,07,465,1,2,3,4,5,6,7 11,14,2089,16,12,26,496,3,1,2,4,5,6,7 17,01,20,07,50,826,0,0,2,1,4,5,6,7 08,04,1969,00,28,34,561,3,2,1,4,5,6,7 1905,07,05,09,17,43,533,1,2,3,4,5,6,7 03,07,2085,17,09,33,245,3,1,2,4,5,6,7 23,09,08,36,17,927,0,0,2,1,4,5,6,7 29,02,2028,06,37,38,777,3,2,1,4,5,6,7 1934,03,28,12,54,28,104,1,2,3,4,5,6,7 10,26,1980,17,03,54,842,3,1,2,4,5,6,7 11,02,13,05,36,728,0,0,2,1,4,5,6,7 02,10,2051,05,32,13,946,3,2,1,4,5,6,7 1975,11,23,12,25,39,848,1,2,3,4,5,6,7 04,16,2068,07,26,36,027,3,1,2,4,5,6,7 12,11,02,05,25,921,0,0,2,1,4,5,6,7 15,07,1917,07,07,27,311,3,2,1,4,5,6,7 1987,11,11,19,15,26,143,1,2,3,4,5,6,7 11,17,1942,15,46,34,689,3,1,2,4,5,6,7 23,07,10,00,03,188,0,0,2,1,4,5,6,7 03,07,1917,00,43,42,839,3,2,1,4,5,6,7 1982,11,01,16,01,07,514,1,2,3,4,5,6,7 10,26,2068,04,20,12,515,3,1,2,4,5,6,7 14,11,21,31,21,394,0,0,2,1,4,5,6,7 13,09,2011,02,53,13,515,3,2,1,4,5,6,7 1908,09,28,18,21,12,488,1,2,3,4,5,6,7 04,06,1900,12,03,19,335,3,1,2,4,5,6,7 11,07,17,09,00,275,0,0,2,1,4,5,6,7 04,11,2018,07,30,27,574,3,2,1,4,5,6,7 1987,04,24,07,28,55,483,1,2,3,4,5,6,7 07,28,2026,05,52,42,495,3,1,2,4,5,6,7 25,02,17,07,01,285,0,0,2,1,4,5,6,7 18,06,1977,02,58,39,196,3,2,1,4,5,6,7 1998,06,08,02,15,38,729,1,2,3,4,5,6,7 01,09,2071,07,02,43,571,3,1,2,4,5,6,7 26,11,13,06,28,358,0,0,2,1,4,5,6,7 07,06,2005,12,28,31,530,3,2,1,4,5,6,7 2021,01,16,09,39,01,356,1,2,3,4,5,6,7 08,14,2051,13,13,58,721,3,1,2,4,5,6,7 07,05,22,11,35,821,0,0,2,1,4,5,6,7 20,05,1945,01,01,33,810,3,2,1,4,5,6,7 1970,02,10,01,00,37,749,1,2,3,4,5,6,7 07,22,1900,13,05,25,069,3,1,2,4,5,6,7 17,02,18,02,24,347,0,0,2,1,4,5,6,7 04,03,1990,05,18,03,781,3,2,1,4,5,6,7 1953,08,14,22,14,22,967,1,2,3,4,5,6,7 04,20,2097,05,57,40,516,3,1,2,4,5,6,7 20,07,14,48,18,864,0,0,2,1,4,5,6,7 04,10,2060,10,10,00,585,3,2,1,4,5,6,7 2019,02,08,15,00,00,548,1,2,3,4,5,6,7 01,24,1943,12,30,16,524,3,1,2,4,5,6,7 03,08,16,17,05,566,0,0,2,1,4,5,6,7 12,03,2006,01,21,43,770,3,2,1,4,5,6,7 1913,05,11,10,36,40,269,1,2,3,4,5,6,7 01,03,2064,22,20,56,548,3,1,2,4,5,6,7 17,07,22,50,02,758,0,0,2,1,4,5,6,7 03,10,1918,19,57,51,106,3,2,1,4,5,6,7 2054,10,13,01,40,43,535,1,2,3,4,5,6,7 10,19,1957,08,39,55,927,3,1,2,4,5,6,7 29,01,05,09,41,051,0,0,2,1,4,5,6,7 19,07,1942,15,18,39,438,3,2,1,4,5,6,7 1926,02,08,03,09,15,883,1,2,3,4,5,6,7 03,09,2015,14,13,00,275,3,1,2,4,5,6,7 02,03,20,11,11,587,0,0,2,1,4,5,6,7 17,05,1990,22,30,23,912,3,2,1,4,5,6,7 2018,02,01,22,35,36,731,1,2,3,4,5,6,7 04,25,1941,12,10,11,622,3,1,2,4,5,6,7 25,07,13,02,53,306,0,0,2,1,4,5,6,7 14,10,1902,00,23,48,502,3,2,1,4,5,6,7 2088,07,11,04,31,52,899,1,2,3,4,5,6,7 09,26,2078,09,15,24,815,3,1,2,4,5,6,7 09,09,00,58,25,999,0,0,2,1,4,5,6,7 10,02,2002,13,44,02,943,3,2,1,4,5,6,7 2016,04,25,00,06,32,629,1,2,3,4,5,6,7 03,22,2085,05,13,10,993,3,1,2,4,5,6,7 08,01,03,30,41,796,0,0,2,1,4,5,6,7 17,06,1958,17,55,10,832,3,2,1,4,5,6,7 2051,03,27,00,50,33,782,1,2,3,4,5,6,7 02,17,2005,05,57,57,245,3,1,2,4,5,6,7 10,07,03,02,37,007,0,0,2,1,4,5,6,7 07,07,2084,19,43,39,891,3,2,1,4,5,6,7 2057,08,19,17,54,24,669,1,2,3,4,5,6,7 07,05,2069,12,10,16,938,3,1,2,4,5,6,7 29,08,21,06,47,725,0,0,2,1,4,5,6,7 14,09,1963,00,11,46,107,3,2,1,4,5,6,7 2032,04,27,01,50,10,473,1,2,3,4,5,6,7 08,18,2070,18,10,38,581,3,1,2,4,5,6,7 19,05,19,37,40,430,0,0,2,1,4,5,6,7 22,01,1956,14,43,52,770,3,2,1,4,5,6,7 2053,09,25,15,24,43,558,1,2,3,4,5,6,7 02,13,1973,18,54,31,485,3,1,2,4,5,6,7 11,02,09,35,22,869,0,0,2,1,4,5,6,7 15,05,2080,22,56,51,196,3,2,1,4,5,6,7 2025,05,26,06,01,57,045,1,2,3,4,5,6,7 11,16,1983,19,21,37,954,3,1,2,4,5,6,7 18,11,09,24,50,888,0,0,2,1,4,5,6,7 13,07,2049,20,06,03,287,3,2,1,4,5,6,7 1967,01,28,17,22,01,907,1,2,3,4,5,6,7 11,05,1933,13,34,30,203,3,1,2,4,5,6,7 26,07,11,17,48,512,0,0,2,1,4,5,6,7 10,11,1997,07,00,16,957,3,2,1,4,5,6,7 1924,05,29,10,48,03,502,1,2,3,4,5,6,7 09,09,1982,14,53,38,713,3,1,2,4,5,6,7 29,01,1946,09,03,20,803,3,2,1,4,5,6,7 2057,01,26,04,40,12,899,1,2,3,4,5,6,7 02,10,1924,16,45,13,266,3,1,2,4,5,6,7 28,09,01,34,50,765,0,0,2,1,4,5,6,7 29,10,1990,05,44,05,397,3,2,1,4,5,6,7 1933,03,06,11,02,13,565,1,2,3,4,5,6,7 06,30,1903,12,58,27,487,3,1,2,4,5,6,7 27,01,19,44,53,683,0,0,2,1,4,5,6,7 13,01,1937,01,26,43,981,3,2,1,4,5,6,7 2008,10,28,08,54,40,981,1,2,3,4,5,6,7 02,04,2077,12,17,37,311,3,1,2,4,5,6,7 21,08,08,39,23,796,0,0,2,1,4,5,6,7 2085,09,21,04,14,10,561,1,2,3,4,5,6,7 04,25,2073,10,50,29,434,3,1,2,4,5,6,7 10,11,22,32,19,797,0,0,2,1,4,5,6,7 28,04,1964,11,51,58,412,3,2,1,4,5,6,7 2004,05,03,05,04,01,773,1,2,3,4,5,6,7 07,04,2028,11,06,30,465,3,1,2,4,5,6,7 20,07,07,19,35,774,0,0,2,1,4,5,6,7 11,03,2022,05,46,50,295,3,2,1,4,5,6,7 1933,11,30,20,38,35,739,1,2,3,4,5,6,7 08,04,1939,07,41,30,201,3,1,2,4,5,6,7 05,03,07,48,06,384,0,0,2,1,4,5,6,7 11,03,2060,06,05,54,807,3,2,1,4,5,6,7 2018,05,08,15,48,55,697,1,2,3,4,5,6,7 09,18,2005,08,49,52,170,3,1,2,4,5,6,7 15,09,20,00,14,541,0,0,2,1,4,5,6,7 25,01,1905,20,15,41,497,3,2,1,4,5,6,7 04,17,1966,04,17,38,339,3,1,2,4,5,6,7 20,10,01,13,56,327,0,0,2,1,4,5,6,7 13,04,2056,11,48,26,548,3,2,1,4,5,6,7 2087,03,19,10,53,25,028,1,2,3,4,5,6,7 04,17,2046,09,13,24,689,3,1,2,4,5,6,7 14,03,03,46,23,317,0,0,2,1,4,5,6,7 17,03,2012,20,00,04,247,3,2,1,4,5,6,7 1920,08,29,22,17,58,281,1,2,3,4,5,6,7 08,18,2023,05,07,13,171,3,1,2,4,5,6,7 26,11,18,16,44,248,0,0,2,1,4,5,6,7 30,07,1957,10,28,16,688,3,2,1,4,5,6,7 1949,02,19,00,42,19,347,1,2,3,4,5,6,7 11,15,1961,22,23,08,408,3,1,2,4,5,6,7 24,02,18,46,57,955,0,0,2,1,4,5,6,7 02,09,1917,11,03,24,563,3,2,1,4,5,6,7 1989,06,02,07,01,05,491,1,2,3,4,5,6,7 07,02,2091,19,42,07,388,3,1,2,4,5,6,7 18,01,10,15,07,820,0,0,2,1,4,5,6,7 08,08,2060,02,12,18,701,3,2,1,4,5,6,7 2088,03,18,22,10,05,619,1,2,3,4,5,6,7 02,28,1917,21,31,52,337,3,1,2,4,5,6,7 10,05,06,12,31,544,0,0,2,1,4,5,6,7 08,11,2074,00,40,43,285,3,2,1,4,5,6,7 2040,01,19,19,43,57,351,1,2,3,4,5,6,7 01,19,2014,20,20,40,851,3,1,2,4,5,6,7 28,05,04,54,48,914,0,0,2,1,4,5,6,7 06,05,1923,21,33,53,550,3,2,1,4,5,6,7 2097,03,05,03,20,01,370,1,2,3,4,5,6,7 02,10,1982,21,42,51,414,3,1,2,4,5,6,7 24,05,16,08,27,391,0,0,2,1,4,5,6,7 29,08,1962,03,41,10,098,3,2,1,4,5,6,7 1907,02,15,04,01,29,723,1,2,3,4,5,6,7 04,25,2020,09,28,21,370,3,1,2,4,5,6,7 03,09,02,11,43,741,0,0,2,1,4,5,6,7 05,03,1948,06,24,47,898,3,2,1,4,5,6,7 2081,06,20,16,21,21,677,1,2,3,4,5,6,7 03,01,1983,04,42,23,508,3,1,2,4,5,6,7 04,03,05,35,40,670,0,0,2,1,4,5,6,7 03,01,2009,01,57,37,444,3,2,1,4,5,6,7 1973,04,19,18,04,25,498,1,2,3,4,5,6,7 08,22,2028,15,16,39,462,3,1,2,4,5,6,7 15,08,08,47,56,384,0,0,2,1,4,5,6,7 10,02,1992,04,56,20,519,3,2,1,4,5,6,7 1914,03,01,06,45,23,958,1,2,3,4,5,6,7 08,02,1926,12,13,48,240,3,1,2,4,5,6,7 28,03,08,34,00,263,0,0,2,1,4,5,6,7 29,10,1913,08,48,13,512,3,2,1,4,5,6,7 04,29,1998,01,28,07,334,3,1,2,4,5,6,7 17,07,13,15,19,402,0,0,2,1,4,5,6,7 01,11,2073,07,08,57,231,3,2,1,4,5,6,7 1980,02,27,15,23,02,768,1,2,3,4,5,6,7 08,04,2035,08,32,03,010,3,1,2,4,5,6,7 02,08,18,10,09,589,0,0,2,1,4,5,6,7 13,05,2052,04,57,05,755,3,2,1,4,5,6,7 2083,08,20,21,10,13,924,1,2,3,4,5,6,7 10,16,1998,08,09,05,604,3,1,2,4,5,6,7 12,08,17,47,18,394,0,0,2,1,4,5,6,7 18,01,2076,17,43,30,912,3,2,1,4,5,6,7 1907,03,17,04,04,21,093,1,2,3,4,5,6,7 05,07,1957,16,01,21,844,3,1,2,4,5,6,7 13,03,16,42,05,456,0,0,2,1,4,5,6,7 06,05,1929,19,07,29,614,3,2,1,4,5,6,7 1986,05,11,22,38,12,310,1,2,3,4,5,6,7 07,05,1972,13,11,00,505,3,1,2,4,5,6,7 02,06,21,09,56,703,0,0,2,1,4,5,6,7 02,02,2030,04,42,37,423,3,2,1,4,5,6,7 2023,03,19,17,58,54,843,1,2,3,4,5,6,7 08,09,2077,15,36,03,964,3,1,2,4,5,6,7 08,07,01,57,45,215,0,0,2,1,4,5,6,7 29,03,2038,07,29,17,400,3,2,1,4,5,6,7 1923,07,20,04,29,28,558,1,2,3,4,5,6,7 01,23,1985,03,44,07,586,3,1,2,4,5,6,7 30,07,15,11,47,657,0,0,2,1,4,5,6,7 02,03,1967,14,58,25,500,3,2,1,4,5,6,7 1937,04,02,08,35,56,535,1,2,3,4,5,6,7 09,15,2012,07,09,31,178,3,1,2,4,5,6,7 26,11,19,28,04,749,0,0,2,1,4,5,6,7 13,08,1977,22,36,33,527,3,2,1,4,5,6,7 1909,03,06,01,55,36,427,1,2,3,4,5,6,7 10,08,2006,21,37,56,158,3,1,2,4,5,6,7 19,11,19,57,24,008,0,0,2,1,4,5,6,7 07,11,2019,12,20,51,929,3,2,1,4,5,6,7 2093,11,24,14,13,51,382,1,2,3,4,5,6,7 01,15,1911,14,43,44,505,3,1,2,4,5,6,7 23,09,06,27,57,099,0,0,2,1,4,5,6,7 24,09,1916,15,23,28,522,3,2,1,4,5,6,7 2009,08,10,22,15,48,451,1,2,3,4,5,6,7 02,24,1933,04,45,48,984,3,1,2,4,5,6,7 14,11,09,35,12,491,0,0,2,1,4,5,6,7 19,06,2087,13,18,52,572,3,2,1,4,5,6,7 1987,01,29,08,45,26,250,1,2,3,4,5,6,7 10,24,1932,07,40,54,629,3,1,2,4,5,6,7 25,02,05,31,24,736,0,0,2,1,4,5,6,7 14,11,1943,21,25,56,523,3,2,1,4,5,6,7 1990,04,20,15,00,37,348,1,2,3,4,5,6,7 02,12,1998,06,48,28,979,3,1,2,4,5,6,7 25,06,17,53,45,644,0,0,2,1,4,5,6,7 17,04,2014,07,24,15,070,3,2,1,4,5,6,7 1982,06,13,09,16,45,231,1,2,3,4,5,6,7 01,14,2040,16,21,03,088,3,1,2,4,5,6,7 22,09,09,19,42,790,0,0,2,1,4,5,6,7 19,03,2084,01,36,46,197,3,2,1,4,5,6,7 1958,02,07,08,06,14,986,1,2,3,4,5,6,7 08,10,1970,18,53,29,916,3,1,2,4,5,6,7 16,03,08,00,38,320,0,0,2,1,4,5,6,7 27,10,1904,12,39,08,270,3,2,1,4,5,6,7 1939,10,14,06,14,45,774,1,2,3,4,5,6,7 10,17,1963,06,57,56,308,3,1,2,4,5,6,7 23,11,03,17,51,752,0,0,2,1,4,5,6,7 29,08,2028,01,51,01,261,3,2,1,4,5,6,7 2030,10,10,11,49,28,999,1,2,3,4,5,6,7 09,20,1990,21,00,53,387,3,1,2,4,5,6,7 20,05,21,06,26,533,0,0,2,1,4,5,6,7 25,01,2040,19,39,37,708,3,2,1,4,5,6,7 2085,04,14,04,41,54,623,1,2,3,4,5,6,7 03,30,1991,07,28,19,878,3,1,2,4,5,6,7 02,02,21,11,38,447,0,0,2,1,4,5,6,7 08,10,2059,20,34,02,069,3,2,1,4,5,6,7 2081,08,01,11,04,58,407,1,2,3,4,5,6,7 10,07,1952,19,05,24,543,3,1,2,4,5,6,7 22,05,11,08,48,559,0,0,2,1,4,5,6,7 20,11,1900,06,22,10,716,3,2,1,4,5,6,7 2026,10,27,22,52,29,021,1,2,3,4,5,6,7 06,20,1924,15,57,18,678,3,1,2,4,5,6,7 18,03,15,52,06,303,0,0,2,1,4,5,6,7 01,07,1915,16,49,19,935,3,2,1,4,5,6,7 1906,10,18,11,15,21,831,1,2,3,4,5,6,7 01,07,1970,16,33,06,335,3,1,2,4,5,6,7 12,03,13,13,22,451,0,0,2,1,4,5,6,7 01,04,2063,09,32,42,948,3,2,1,4,5,6,7 2042,02,19,03,37,21,898,1,2,3,4,5,6,7 06,05,1961,04,40,43,752,3,1,2,4,5,6,7 09,01,17,36,52,211,0,0,2,1,4,5,6,7 08,11,1980,15,35,10,143,3,2,1,4,5,6,7 1952,01,05,12,00,00,159,1,2,3,4,5,6,7 11,01,1946,21,21,21,294,3,1,2,4,5,6,7 27,03,19,49,46,373,0,0,2,1,4,5,6,7 17,10,1993,05,29,15,425,3,2,1,4,5,6,7 2071,05,07,19,56,09,037,1,2,3,4,5,6,7 10,17,1951,14,37,39,044,3,1,2,4,5,6,7 23,08,00,47,26,502,0,0,2,1,4,5,6,7 26,08,2031,10,37,37,839,3,2,1,4,5,6,7 2055,09,16,07,13,08,753,1,2,3,4,5,6,7 10,06,2070,18,35,30,080,3,1,2,4,5,6,7 24,07,03,15,46,418,0,0,2,1,4,5,6,7 06,02,1977,13,19,00,381,3,2,1,4,5,6,7 2008,09,26,00,33,34,412,1,2,3,4,5,6,7 05,27,2076,00,40,08,389,3,1,2,4,5,6,7 24,06,10,00,10,831,0,0,2,1,4,5,6,7 22,03,2043,06,29,29,236,3,2,1,4,5,6,7 2032,08,05,03,17,21,549,1,2,3,4,5,6,7 10,08,1971,17,57,30,310,3,1,2,4,5,6,7 11,01,21,52,26,819,0,0,2,1,4,5,6,7 08,10,1926,03,14,03,501,3,2,1,4,5,6,7 2028,10,14,07,02,58,192,1,2,3,4,5,6,7 01,01,1903,17,11,20,375,3,1,2,4,5,6,7 02,05,08,38,56,007,0,0,2,1,4,5,6,7 03,04,1980,22,10,10,835,3,2,1,4,5,6,7 2068,11,16,12,31,16,643,1,2,3,4,5,6,7 05,19,2060,05,02,30,431,3,1,2,4,5,6,7 11,01,04,01,13,713,0,0,2,1,4,5,6,7 07,08,2006,21,22,44,359,3,2,1,4,5,6,7 2073,04,25,14,09,15,132,1,2,3,4,5,6,7 01,18,1973,21,55,13,963,3,1,2,4,5,6,7 11,11,12,43,40,040,0,0,2,1,4,5,6,7 18,11,1966,03,07,35,592,3,2,1,4,5,6,7 2054,05,28,09,09,25,220,1,2,3,4,5,6,7 10,12,2070,05,09,10,615,3,1,2,4,5,6,7 09,10,11,46,30,865,0,0,2,1,4,5,6,7 26,06,1905,05,55,52,117,3,2,1,4,5,6,7 2096,04,05,13,19,10,308,1,2,3,4,5,6,7 05,03,1946,18,40,37,989,3,1,2,4,5,6,7 21,04,20,23,39,961,0,0,2,1,4,5,6,7 20,02,2068,19,29,45,234,3,2,1,4,5,6,7 2097,09,19,15,20,33,914,1,2,3,4,5,6,7 01,17,2035,03,43,05,965,3,1,2,4,5,6,7 01,06,00,49,54,021,0,0,2,1,4,5,6,7 26,06,2009,06,18,14,810,3,2,1,4,5,6,7 1909,04,19,05,28,17,436,1,2,3,4,5,6,7 05,29,2003,06,45,23,931,3,1,2,4,5,6,7 29,05,15,12,06,183,0,0,2,1,4,5,6,7 26,07,1989,17,20,17,154,3,2,1,4,5,6,7 2079,11,20,01,06,48,948,1,2,3,4,5,6,7 01,30,2032,02,03,46,504,3,1,2,4,5,6,7 25,08,08,03,12,787,0,0,2,1,4,5,6,7 19,04,1993,13,48,38,782,3,2,1,4,5,6,7 1929,09,28,10,33,25,238,1,2,3,4,5,6,7 10,16,1996,14,24,49,570,3,1,2,4,5,6,7 11,03,09,41,06,442,0,0,2,1,4,5,6,7 02,05,2000,11,39,12,588,3,2,1,4,5,6,7 1977,11,07,14,11,14,658,1,2,3,4,5,6,7 06,06,1996,04,51,54,717,3,1,2,4,5,6,7 21,01,09,53,36,209,0,0,2,1,4,5,6,7 14,10,1992,14,18,55,080,3,2,1,4,5,6,7 1963,04,25,15,28,50,585,1,2,3,4,5,6,7 02,28,1953,03,40,45,417,3,1,2,4,5,6,7 29,10,10,10,28,611,0,0,2,1,4,5,6,7 04,08,1903,20,42,57,001,3,2,1,4,5,6,7 1912,08,02,10,02,07,243,1,2,3,4,5,6,7 10,01,2061,14,20,49,656,3,1,2,4,5,6,7 07,10,02,20,27,450,0,0,2,1,4,5,6,7 06,01,1968,17,23,53,893,3,2,1,4,5,6,7 2034,01,25,01,24,02,380,1,2,3,4,5,6,7 05,24,1942,09,30,52,046,3,1,2,4,5,6,7 08,02,06,57,58,910,0,0,2,1,4,5,6,7 30,06,2067,19,57,15,892,3,2,1,4,5,6,7 1961,05,22,06,45,45,844,1,2,3,4,5,6,7 02,27,2026,18,21,35,840,3,1,2,4,5,6,7 11,01,05,01,39,232,0,0,2,1,4,5,6,7 15,09,1931,12,07,02,320,3,2,1,4,5,6,7 2085,04,24,04,39,45,408,1,2,3,4,5,6,7 08,28,1983,02,57,02,699,3,1,2,4,5,6,7 20,05,19,55,11,311,0,0,2,1,4,5,6,7 16,10,2014,20,38,04,438,3,2,1,4,5,6,7 1978,03,03,15,27,36,283,1,2,3,4,5,6,7 05,18,2087,09,58,02,477,3,1,2,4,5,6,7 01,04,1932,21,55,33,073,3,2,1,4,5,6,7 2057,02,27,01,23,23,635,1,2,3,4,5,6,7 05,07,1930,16,32,55,807,3,1,2,4,5,6,7 15,11,14,20,18,160,0,0,2,1,4,5,6,7 20,08,1911,00,40,10,692,3,2,1,4,5,6,7 1969,11,16,07,16,04,093,1,2,3,4,5,6,7 10,10,1962,05,41,30,745,3,1,2,4,5,6,7 01,02,11,48,28,659,0,0,2,1,4,5,6,7 11,06,1994,03,21,02,897,3,2,1,4,5,6,7 2093,06,09,12,03,01,659,1,2,3,4,5,6,7 29,10,06,51,47,307,0,0,2,1,4,5,6,7 14,07,1936,00,26,02,251,3,2,1,4,5,6,7 1966,08,25,07,23,23,648,1,2,3,4,5,6,7 07,28,2020,01,44,24,151,3,1,2,4,5,6,7 24,05,20,21,09,194,0,0,2,1,4,5,6,7 06,11,1981,02,11,43,793,3,2,1,4,5,6,7 2052,06,21,07,17,46,306,1,2,3,4,5,6,7 10,23,2023,17,10,22,774,3,1,2,4,5,6,7 05,08,02,15,25,283,0,0,2,1,4,5,6,7 11,08,1973,17,52,43,610,3,2,1,4,5,6,7 2045,04,24,04,30,23,517,1,2,3,4,5,6,7 01,23,2060,10,39,38,205,3,1,2,4,5,6,7 06,07,16,18,29,344,0,0,2,1,4,5,6,7 04,04,2083,13,35,27,353,3,2,1,4,5,6,7 1982,11,06,05,35,24,578,1,2,3,4,5,6,7 09,09,1983,09,47,01,112,3,1,2,4,5,6,7 19,03,11,42,04,301,0,0,2,1,4,5,6,7 07,02,1917,02,35,18,623,3,2,1,4,5,6,7 1932,07,25,14,27,47,381,1,2,3,4,5,6,7 05,19,2049,21,47,36,927,3,1,2,4,5,6,7 17,05,16,25,13,732,0,0,2,1,4,5,6,7 20,10,2028,15,17,15,776,3,2,1,4,5,6,7 2049,05,18,11,10,49,437,1,2,3,4,5,6,7 11,01,1929,22,44,43,814,3,1,2,4,5,6,7 23,10,06,14,37,125,0,0,2,1,4,5,6,7 23,08,1924,03,58,45,775,3,2,1,4,5,6,7 1937,05,30,07,23,40,114,1,2,3,4,5,6,7 02,04,1954,11,27,10,937,3,1,2,4,5,6,7 05,02,01,06,16,709,0,0,2,1,4,5,6,7 16,10,1969,01,33,42,385,3,2,1,4,5,6,7 2063,01,16,07,30,23,139,1,2,3,4,5,6,7 04,27,2088,18,51,29,286,3,1,2,4,5,6,7 18,10,13,22,42,081,0,0,2,1,4,5,6,7 30,11,2002,07,58,45,204,3,2,1,4,5,6,7 1973,08,29,06,25,11,864,1,2,3,4,5,6,7 10,08,2089,18,02,09,123,3,1,2,4,5,6,7 09,10,10,20,54,630,0,0,2,1,4,5,6,7 20,05,2085,10,01,17,695,3,2,1,4,5,6,7 1998,04,16,16,47,09,095,1,2,3,4,5,6,7 09,26,2092,06,13,11,003,3,1,2,4,5,6,7 21,03,13,09,46,756,0,0,2,1,4,5,6,7 13,08,1977,19,16,16,662,3,2,1,4,5,6,7 2082,02,20,12,28,31,250,1,2,3,4,5,6,7 03,12,2011,19,54,53,157,3,1,2,4,5,6,7 26,11,21,55,14,170,0,0,2,1,4,5,6,7 22,11,1939,14,11,12,375,3,2,1,4,5,6,7 1948,06,26,13,14,08,487,1,2,3,4,5,6,7 02,10,1961,06,47,48,990,3,1,2,4,5,6,7 24,09,10,15,23,168,0,0,2,1,4,5,6,7 28,06,1919,02,32,17,852,3,2,1,4,5,6,7 1950,09,19,03,10,50,006,1,2,3,4,5,6,7 10,01,2071,11,34,58,350,3,1,2,4,5,6,7 25,09,15,05,21,601,0,0,2,1,4,5,6,7 21,01,1907,16,14,38,645,3,2,1,4,5,6,7 2013,03,08,07,40,35,094,1,2,3,4,5,6,7 04,05,2064,22,49,54,238,3,1,2,4,5,6,7 16,08,17,29,16,434,0,0,2,1,4,5,6,7 29,04,1978,14,06,55,848,3,2,1,4,5,6,7 1905,02,05,19,41,34,684,1,2,3,4,5,6,7 02,23,1980,06,49,27,604,3,1,2,4,5,6,7 19,04,21,41,26,181,0,0,2,1,4,5,6,7 27,09,2059,00,49,23,941,3,2,1,4,5,6,7 2069,05,22,15,22,38,075,1,2,3,4,5,6,7 03,17,2030,02,56,30,944,3,1,2,4,5,6,7 04,01,01,15,30,232,0,0,2,1,4,5,6,7 22,10,2002,08,38,47,520,3,2,1,4,5,6,7 1993,11,30,04,03,25,249,1,2,3,4,5,6,7 02,04,1973,17,56,46,465,3,1,2,4,5,6,7 24,02,02,05,50,065,0,0,2,1,4,5,6,7 21,04,2083,18,32,11,908,3,2,1,4,5,6,7 1995,06,03,19,31,46,658,1,2,3,4,5,6,7 01,12,2037,08,01,57,693,3,1,2,4,5,6,7 20,01,20,28,10,585,0,0,2,1,4,5,6,7 15,09,1988,11,17,18,171,3,2,1,4,5,6,7 1938,06,01,21,08,44,679,1,2,3,4,5,6,7 04,01,2037,18,34,33,536,3,1,2,4,5,6,7 11,02,14,51,00,412,0,0,2,1,4,5,6,7 25,09,1929,17,18,13,035,3,2,1,4,5,6,7 2035,04,20,00,09,16,980,1,2,3,4,5,6,7 03,09,1952,16,37,05,972,3,1,2,4,5,6,7 01,02,2049,15,57,16,816,3,2,1,4,5,6,7 2053,03,05,05,33,27,898,1,2,3,4,5,6,7 10,30,2098,12,24,43,741,3,1,2,4,5,6,7 08,04,05,11,29,576,0,0,2,1,4,5,6,7 18,05,2089,22,10,53,504,3,2,1,4,5,6,7
8de5fc9d82d684eba701dfcdd1d2ab42117bd830
78de1b37ac7fbc77bc00584d6677402639eb8ccf
/Ex_6_14.sce
c34b8b74e91cff043ff9ce6ef35bfa1b1d221c5c
[]
no_license
devanshmody/c-c-programs
de25f17728b488bb5245342338d303d968f2ee05
7405239f4fc792a1382d7726cb1aaeffc3e740a8
refs/heads/main
2023-04-16T14:11:06.271935
2021-05-05T09:39:48
2021-05-05T09:39:48
364,526,778
0
0
null
null
null
null
UTF-8
Scilab
false
false
176
sce
Ex_6_14.sce
//Example 6.14 clc;clear;close; X=[3 2+%i 1 2-%i]; //Calculation of IDFT x=dft(X,1); x=clean(x); disp(X,'DFT of the Sequence is X(k): '); disp(x,'Sequence is x(n): ');
623a90e3a2e4b29480e8ca233804dc6778c07191
abed134eb329d44a339af93997f34c76b7649173
/P3Codes/Fibonacci I.tst
69d5c5c529ef4fc764169b1ed96dc718c9bd51bd
[]
no_license
Patrickyyh/CSCE-312
8823df9f53d378b96c8018064da3823faef95ce3
b9ba0fd8592ce5d91d1689219ff48d638a66aee0
refs/heads/master
2023-05-03T18:46:15.689810
2021-05-22T06:02:17
2021-05-22T06:02:17
369,727,875
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,998
tst
Fibonacci I.tst
load Fibonacci.hdl, output-file FibonacciI.out, compare-to FibonacciI.cmp, output-list time%S2.3.1 f0%D1.4.1 f1%D1.4.1 msel%D1.4.1 enable1%B4.1.4 enable2%B4.1.4 out%D1.4.1; set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 0, // Fibonacci circuit switched off to set up initial values tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output; set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output, set f0 %D0, set f1 %D1, set enable1 1, set enable2 1, set msel 1, // Fibonacci circuit switched on to generate numbers tick, tock, output,
44f06c0799f1fd0e971f83e395a9b8ba87676d00
449d555969bfd7befe906877abab098c6e63a0e8
/2279/CH5/EX5.32/Ex5_32.sce
43cb6362a69a3d970379fb7e7a00cd6dc100c987
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
411
sce
Ex5_32.sce
//CTFT of Periodic Impulse Train clear; clc; close; // CTFT T = -4:4;; T1 = 1; xt = ones(1,length(T)); ak = 1/T1; XW = 2*%pi*ak*ones(1,length(T)); Wo = 2*%pi/T1; W = Wo*T; figure subplot(2,1,1) plot2d3('gnn',T,xt); xlabel(' t'); title('Periodic Impulse Train') subplot(2,1,2) plot2d3('gnn',W,XW); xlabel(' t'); title('CTFT of Periodic Impulse Train')
7b35d320b04dac3c4828de5f1680e7b925f26cca
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set14/s_Materials_Science_R._S._Khurmi_And_R._S._Sedha_2153.zip/Materials_Science_R._S._Khurmi_And_R._S._Sedha_2153/CH7/EX7.1/ex_7_1.sce
272ac771b541a080eac913a35999795958057303
[]
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
230
sce
ex_7_1.sce
errcatch(-1,"stop");mode(2);//Example 7.1 : shear modulus of the material ; ; //given data : format('v',6) E=210; // youngs's modulus in GN/m^2 v=0.3; // poisson ratio G=E/(2*(1+v)); disp(G,"shear modulus,G(GN/m^2) = ") exit();
c5a18c3c3dfeaa711fabb6fc318edbcbccad041d
449d555969bfd7befe906877abab098c6e63a0e8
/821/CH5/EX5.27/5_27.sce
f31cadde1fe22422407c13e0c2d3478a71bc9fa2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
447
sce
5_27.sce
dGC2H6O=-41.77;//Standard free energy change of C2H6O in Kcal per mol// dGCO2=-94.26;//Standard free energy change of CO2 in Kcal per mol// dGH2O=-56.69;//Standard free energy change of C2H6O in Kcal per mol// dGO2=0;//Standard free energy change of O2 in Kcal per mol// dG=2*dGCO2+3*dGH2O-dGC2H6O-3*dGO2;//Standard free energy change in Kcal// printf('Standard free energy change accompanying the combustion of ethanol at 298K=%fKcal',dG);
5bc82af8364a899e7e8e9bccb86b6a35fa9a318e
449d555969bfd7befe906877abab098c6e63a0e8
/494/CH3/EX3.8/3_8.sce
e5e25ae8ce959128cc2b81b0009014622228d7d0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
475
sce
3_8.sce
//all the quantities are expressed in SI units V_inf = 100.1; //freestream velocity p_inf = 101314.1; //standard sea level pressure rho_inf = 1.225; //density of air at sea level //the dynamic pressure can be calculated as q_inf = 1/2*rho_inf*(V_inf^2); //thus the total pressure is given as p0 = p_inf + q_inf; printf("\nRESULTS\n--------\nThe total pressure measured by pitot tube is\n p0 = %6.2f Pa",p0)
3f8ab41266029ed117a1d74716076edca80bb860
449d555969bfd7befe906877abab098c6e63a0e8
/2072/CH29/EX29.4/EX29_4.sce
3f6731433ec578b2e6e5486fffc7f90ee4235908
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
EX29_4.sce
//Chapter 29 clc //Example 4 //given T_half=3.83 //half life time of Radon in days No=4*10^8 //Initial No .of Radon atoms lambda=0.693/T_half // in days t=12 N=No*exp(-(lambda*t)) disp(N,"a) No.of atoms remaining after 12 days is") lambda_=lambda/(8.64*10^4) R=lambda_*No disp(R,"Initial activity of the radon sample in decay/sec is")
6c417c351987d5df3f24390870a63c337aff19fa
449d555969bfd7befe906877abab098c6e63a0e8
/1184/CH12/EX12.2/Ex12_2.sce
7d4bd16043402be85489afd5bc7ede80cd2698e4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
438
sce
Ex12_2.sce
//Example 12-2, Page No - 474 clear clc block = 1500 ethernet = 10*10^6 token_ring = 16*10^6 t1_bit = 1/ethernet t1_byte = 8*t1_bit t1_1526 = 1526 *t1_byte t2_bit = 1/token_ring t2_byte = 8 * t2_bit t2_1521 =1521*t2_byte printf('Time required for the ethernet with the speed of 10Mbps is %.3f ns',t1_1526*10^6) printf('\n Time required for the token ring format with the speed of 16 Mbps is %.3f ns',t2_1521*10^6)
47af8d49596c74da50e3f2161a4d4addb5e738d4
449d555969bfd7befe906877abab098c6e63a0e8
/3556/CH13/EX13.7/Ex13_7.sce
57c095f9222c8b2effce2875e744030a4d85c11c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
916
sce
Ex13_7.sce
clc // Fundamental of Electric Circuit // Charles K. Alexander and Matthew N.O Sadiku // Mc Graw Hill of New York // 5th Edition // Part 1 : AC Circuits // Chapter 13 : Magnetically Couple Circuits // Example 13 - 7 clear; clc; close; // // Given data V1 = 2400.0000; V2 = 120.0000; N2 = 50.0000; S = 9600.0000; // // Calculations Turn Ratio n = V2/V1; // Calculations the Number of Turn on The Primary Side N1 = N2/n; // Calculations Current I1 I1 = S/V1; // Calculation Currwent I2 I2 = I1/n; // // Display the result disp("Example 13-9 Solution : "); printf(" \n n = Turn Ratio = %.3f ",n) printf(" \n N1 = The Number of Turn on The Primary Side = %.3f turns",N1) printf(" \n I1 = Magnitude of Current I1 = %.3f A",I1) printf(" \n I2 = Magnitude of Current I2 = %.3f A",I2)
26c24899fea65f5834001d42f2c55222b8128e8e
009e6209a86f0838f0faca8a33b2c162e5d1a7a6
/src/scripts/NewtonRaphson.sce
fda3ec9f9458660fc0cf3e26229682563658c9c5
[]
no_license
MoisesU/MESO-MetodosNumericos
90a62a31e3213c50dec55228ceca7ce034cfbb7c
17fe0efa1690ac93f36799a12a9f9c99f1ab94a4
refs/heads/main
2023-06-02T05:51:03.641326
2021-06-20T03:18:17
2021-06-20T03:18:17
306,203,044
0
0
null
null
null
null
UTF-8
Scilab
false
false
555
sce
NewtonRaphson.sce
function [table, root, err] = newtonRaphson(f, inter1, inter2, fx, maxit) table =[] xn = (inter2+inter1)/2 i = 1 while(1) table(i,1)=i-1 table(i,2)=xn y = f(xn) table(i,3)=y dy = numderivative(f,xn) table(i,4)=dy table(i,5)=y/dy table(i,6)=xn-table(i,5) err = abs((xn - table(i,6))/table(i,6)) table(i,7)=err xn=table(i,6) root = xn if(or([err<=5*10^-fx, i>maxit])) break end i = i + 1 end endfunction
99cb286d200296a7796348c6bfd5268aa9c5da0b
449d555969bfd7befe906877abab098c6e63a0e8
/3014/CH3/EX3.2/Ex3_2.sce
94ec1ffef9471de1be99673135c888f5802ad7ef
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
538
sce
Ex3_2.sce
clc //given that lambda = 0.3 // Wavelength in angstrom d = 0.5 // crystal spacing in angstrom n = 2 // order m = 3 // order printf("Example 3.2") theta_n = asin(n*lambda/(2*d))*180/%pi // Calculation of angle for order n theta_m = asin(m*lambda/(2*d))*180/%pi // Calculation of angle for order m printf("\nAngle for %dnd order maxima is %f degree. ",n,theta_n) printf("\nAngle for %drd order maxima is %f degree. \n\n\n",m,theta_m) // Answers in book are 40.97 degree and 72.29 degree which are due to wrong calculation
4e3c0eb6dca7df64017cc48f6ff41f22512b3649
449d555969bfd7befe906877abab098c6e63a0e8
/881/CH5/EX5.5/exa5_5.sce
aa581c475fc50b4f40584ede4e21d53bb4639d5a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
349
sce
exa5_5.sce
clc; //Example 5.5 //Page no 172 //solution Fl=1255; //kHz Fif=455; //kHz FRF=800; //kHz Q=120; //(a) Fim=Fl+Fif; disp('kHz',Fim,"(a)Image Frequency Fim = "); //(b) p=((Fim/FRF)-(FRF/Fim)); IFRR=sqrt(1+(Q^2)*(p^2)); disp(IFRR,"(b)IFRR = "); //(c) IFRR1=5.6; IFRRt=IFRR*IFRR1; disp(IFRRt,"(c)Combined IFRR of both the circuits = ");
9463fa636de3326ac81d2c898de0514677c7ba10
449d555969bfd7befe906877abab098c6e63a0e8
/2594/CH3/EX3.19/Ex3_19.sce
c7a04681b32a294144e8fdee841f72763c3aa65b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
390
sce
Ex3_19.sce
clc D=120 disp("D = "+string(D)+" A/cm^2") //initializing value of drift current density. E=5 disp("E = "+string(E)+" V/cm") //initializing value of electric field. e=1.6*10^-19 disp("e = "+string(e)+" columb") //initializing value of charge of electron. p=(D/(450*e*E)) disp("thermal equilibrium value of hole concentration ,p=(D/(450*e*E)))= "+string(p)+" /cm^3")//calculation
df96a8e918f8878afc11b216605756a2fc761a1a
449d555969bfd7befe906877abab098c6e63a0e8
/2309/CH4/EX4.7/Ex4_7.sce
15bfefeaff100a33446f95cf0f52d392849ed9d8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
577
sce
Ex4_7.sce
// Chapter 4 Example 7 //============================================================================== clc; clear; // input data m = 1.675*10^-27; // Mass of proton in kg c = 3*10^8; // velocity of light in m/s h = 6.625*10^-34 // plancks constant // Calculations vp = c/20; // velocity of proton in m/s lamda = h/(m*vp) // de-Broglie wavelength in m // Output mprintf('de-Broglie wavelength = %e m',lamda); //==============================================================================
465067aed3720eaa1ebce091b46cd676b9e5f6ab
1573c4954e822b3538692bce853eb35e55f1bb3b
/DSP Functions/zpkshift/test_8.sce
a38d7b64031ebc65fc37de1324ab63bededab262
[]
no_license
shreniknambiar/FOSSEE-DSP-Toolbox
1f498499c1bb18b626b77ff037905e51eee9b601
aec8e1cea8d49e75686743bb5b7d814d3ca38801
refs/heads/master
2020-12-10T03:28:37.484363
2017-06-27T17:47:15
2017-06-27T17:47:15
95,582,974
1
0
null
null
null
null
UTF-8
Scilab
false
false
432
sce
test_8.sce
// Test #8 : When output arguments are less than 5 exec('./zpkshift.sci',-1); [z,p,k]=zpkshift(4.1,9.1,1,0.1,0.5); disp(k); disp(p); disp(z); // //Scilab Output //k=0.4505495 //p=0.0878947 + 0.3196320i // 0.0878947 - 0.3196320i //z=0.0985074 + 0.4839408i // 0.0985074 - 0.4839408i // //Matlab Output //z = 0.0985 + 0.4839i // 0.0985 - 0.4839i //p = 0.0879 + 0.3196i // 0.0879 - 0.3196i //k = 0.4505
8425f1445dca5fb783e99c57e00f3030fd523d0e
449d555969bfd7befe906877abab098c6e63a0e8
/296/CH4/EX4.3/eg4_3.sce
9da55f89b225dff0176e7ceb129c69221da19de8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
144
sce
eg4_3.sce
n0 = 10^14; ni = 1.5*10^10; Tn = 2 *10^-6; Tp = 2 *10^-6; p = 2*10^13; p0 = ni^2/n0; disp(p0,"hole concentration (per cubic centimeter)=")
73a0fc26a4affc8af64139a96b31ea0640af4bbb
449d555969bfd7befe906877abab098c6e63a0e8
/752/CH5/EX5.4.1/5_4_1.sce
cbc26efdb1096fb6930f1d9ecf4f3caa6d285d08
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
739
sce
5_4_1.sce
//page no 162 // problem no 5.4.1 //Resonating freq of a tuned ckt of a CE amplifier is 5MHz f=5*10^6; c=100*10^-12;//tuning capacitance in F Q=150;// Q-factor of the ckt Rl=5*10^3;//load resistance in ohm Rc=40*10^3;//o/p reistance of transistor Ic=500*10^-6;//transister collector current in A C=0.6*10^-12;//collector to base capacitance in F Vt=26*10^-3;//thermal voltage in V //transe conductance is given as gm=Ic/Vt; RD2=Q/(2*%pi*f*c); // At resonance the output admittance is purely conductive and is given as Yo=(1/Rc)+(1/RD2)+(1/Rl); //The voltage gain is given as Av=-(gm/Yo); disp(Av,'The voltage gain is'); //The Millar capacitance is given as Cm=(1-Av)*C; disp('pF',Cm*10^12,'The Millar capacitance is');
88e01db0731316d3b4caba5ca16ac6d0468c32f2
b412360a5393e117e74453519c55968117ef7c7e
/REGRESSIONTESTS/intell.tst
9a0ca857ec8c7f0358940675165146adbdadee8e
[]
no_license
thomas-maeder/popeye
36be3f54f8a7eea15b52a30cf23e455ed6ff44f8
732b721df67295b2c6a1c2ca00e87979f39cc0c9
refs/heads/develop
2023-09-05T13:06:45.846081
2023-08-31T02:59:55
2023-08-31T02:59:55
38,768,803
38
23
null
2023-09-14T18:35:27
2015-07-08T17:21:43
C
UTF-8
Scilab
false
false
8,341
tst
intell.tst
double check with promotee +---a---b---c---d---e---f---g---h---+ | | 8 . . . . . . . . 8 | | 7 . . . . P . . -B 7 | | 6 . . . . . . . . 6 | | 5 . -P . . . . . . 5 | | 4 . . . . . . R . 4 | | 3 . . . -K . . . . 3 | | 2 . . . -S . . . . 2 | | 1 . . . . . . K . 1 | | +---a---b---c---d---e---f---g---h---+ h#2.5 3 + 4 1...e7-e8=B 2.Kd3-e2 Be8-h5 3.Bh7-d3 Rg4-e4 # add_to_move_generation_stack: 34585 play_move: 35413 is_white_king_square_attacked: 1367 is_black_king_square_attacked: 2430 solution finished. double check by pawn capture +---a---b---c---d---e---f---g---h---+ | | 8 . . . . . . . . 8 | | 7 . . -P . . -S . . 7 | | 6 . . -Q -K . K . . 6 | | 5 . . -P . . . . . 5 | | 4 . . . -P . . . . 4 | | 3 . . . . P . . . 3 | | 2 . . . R . . . . 2 | | 1 . . . . . . . . 1 | | +---a---b---c---d---e---f---g---h---+ h#1.5 3 + 6 1...e3*d4 2.Sf7-e5 d4*e5 # add_to_move_generation_stack: 103 play_move: 103 is_white_king_square_attacked: 4 is_black_king_square_attacked: 33 solution finished. double check by en passant capture from above +---a---b---c---d---e---f---g---h---+ | | 8 . . . R . . . . 8 | | 7 . . . . -P . . . 7 | | 6 . . . . . . . B 6 | | 5 . . -R P . . . . 5 | | 4 . . -P -K . . . . 4 | | 3 . . . . . K . . 3 | | 2 . . . . . . . . 2 | | 1 . . . . . . . . 1 | | +---a---b---c---d---e---f---g---h---+ h#1.5 4 + 4 1...Bh6-g7 + 2.e7-e5 d5*e6 ep. # add_to_move_generation_stack: 232 play_move: 223 is_white_king_square_attacked: 11 is_black_king_square_attacked: 37 solution finished. double check by en passant capture from below +---a---b---c---d---e---f---g---h---+ | | 8 . . . . . . . . 8 | | 7 . K -P . . . . . 7 | | 6 . . . -K -P . . . 6 | | 5 . . . P -P . . . 5 | | 4 . . . . . . . . 4 | | 3 . . . . . . . . 3 | | 2 . B . R . . . . 2 | | 1 . . . . . . . . 1 | | +---a---b---c---d---e---f---g---h---+ h#1.5 4 + 4 1...Bb2-a3 + 2.c7-c5 d5*c6 ep. # add_to_move_generation_stack: 706 play_move: 633 is_white_king_square_attacked: 39 is_black_king_square_attacked: 119 solution finished. interception of a defending pawn by a piece that doesn't guard +---a---b---c---d---e---f---g---h---+ | | 8 . . S . . . . . 8 | | 7 -P -P . . . . . . 7 | | 6 -K . . . . . . . 6 | | 5 -P . P . . . . . 5 | | 4 . . . . . . . . 4 | | 3 . . . . . . . B 3 | | 2 . . . . . . . . 2 | | 1 . . . . . . . . 1 | | +---a---b---c---d---e---f---g---h---+ ser-#2 3 + 4 1.Sc8-b6 2.Bh3-f1 # add_to_move_generation_stack: 110 play_move: 99 is_white_king_square_attacked: 0 is_black_king_square_attacked: 63 solution finished. guard with check -> selfpin with check -> selfpin with guard by s +---a---b---c---d---e---f---g---h---+ | | 8 . . . . . . . . 8 | | 7 . . . . . . . . 7 | | 6 . . . . . . . . 6 | | 5 . . . . . K . . 5 | | 4 . . . . S . . . 4 | | 3 . . Q -B -K . . . 3 | | 2 . . . . -P . . . 2 | | 1 . . . . . . . R 1 | | +---a---b---c---d---e---f---g---h---+ h#0.5 4 + 3 1...Rh1-h3 # add_to_move_generation_stack: 133 play_move: 117 is_white_king_square_attacked: 14 is_black_king_square_attacked: 102 solution finished. guard with check -> selfpin with check -> selfpin with guard by b +---a---b---c---d---e---f---g---h---+ | | 8 . . . . . . . . 8 | | 7 . . . . . . . . 7 | | 6 . . . . . . . S 6 | | 5 . . . . . K . . 5 | | 4 . . . . B . . . 4 | | 3 . . Q -B -K . . . 3 | | 2 . . . . -P . . . 2 | | 1 . . . . . . . . 1 | | +---a---b---c---d---e---f---g---h---+ h#0.5 4 + 3 1...Sh6-g4 # add_to_move_generation_stack: 25 play_move: 23 is_white_king_square_attacked: 3 is_black_king_square_attacked: 21 solution finished. in mate stipulations, it makes sense to pin a queen or rook by a guarding queen +---a---b---c---d---e---f---g---h---+ | | 8 . . . . . . . . 8 | | 7 . . . . . . . . 7 | | 6 . . . . . . . . 6 | | 5 . . S . . . . . 5 | | 4 . . . . . . . . 4 | | 3 . . . . . . . . 3 | | 2 . . . . -P . . . 2 | | 1 . . Q -Q -K -B . . 1 | | +---a---b---c---d---e---f---g---h---+ h#0.5 2 + 4 1...Sc5-d3 # add_to_move_generation_stack: 24 play_move: 21 is_white_king_square_attacked: 0 is_black_king_square_attacked: 17 solution finished.
ffccecc605293cf2c259e74df233a13e4f373163
d65667bd6da157e725e5083a95c7a5e3c5e50371
/hdf5/HDF5Examples-0.1.1-Source/FORTRAN/H5T/testfiles/h5ex_t_opaqueatt_F03.tst
503efd2aaa07226f5df493e1c390f2d96539163b
[]
no_license
DCC-Lab/Umuco
4748640ddd5869f193303057445fccbf2e1cc6c5
41c38cd6c8e8d771708959eb02c9dee054148cbc
refs/heads/master
2020-08-07T01:11:31.456247
2019-02-24T18:16:16
2019-02-24T18:16:16
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
107
tst
h5ex_t_opaqueatt_F03.tst
Datatype tag for A1 is: "Character array" A1[0]: OPAQUE0 A1[1]: OPAQUE1 A1[2]: OPAQUE2 A1[3]: OPAQUE3
6e8d9879239ace0bd70796d8b0ce3adedf29ddec
bfd50c3e5c87b6d87ccc363f6d87e925796ebeee
/sample/diabetis_1.tst
b25d7e10354a0e9d58135f94db29bcf834f1d4eb
[]
no_license
yuanmaoxun/SVM_UI
486eb80e484e5c3296d8cbaad389bccb6ef56b50
28bb2c4ad3d4774f9ae9b7224254e74d2b6b6f7c
refs/heads/master
2020-03-09T00:34:10.197742
2018-04-07T09:35:44
2018-04-07T09:35:44
128,491,329
0
0
null
null
null
null
UTF-8
Scilab
false
false
31,494
tst
diabetis_1.tst
1 1:-0.844335 2:0.222236 3:-1.090395 4:1.533551 5:0.990945 6:1.079052 7:0.425933 8:-0.785774 1 1:0.342757 2:0.472450 3:0.769512 4:1.282802 5:0.071158 6:0.381451 7:-0.561003 8:0.149582 -1 1:-0.250789 2:-1.185218 3:-0.573754 4:0.655930 5:-0.536249 6:0.292666 7:-0.410095 8:-0.700742 1 1:-0.844335 2:0.378620 3:1.699466 4:0.467869 5:0.522374 6:0.102411 7:-0.717947 8:0.999905 -1 1:-0.250789 2:0.284790 3:-0.263769 4:-1.287373 5:-0.692439 6:-1.127904 7:-0.476495 8:-0.955839 1 1:-1.141108 2:1.754797 3:-0.470426 4:0.530556 5:3.455282 6:0.330716 7:1.811264 8:-1.040871 -1 1:-0.547562 2:0.284790 3:1.389481 4:-1.287373 5:-0.692439 6:-1.191323 7:-0.615330 8:-1.040871 1 1:0.342757 2:-0.372022 3:-0.367098 4:1.282802 5:0.426925 6:0.482920 7:0.127136 8:-0.700742 -1 1:0.936304 2:-0.590960 3:0.252871 4:1.220115 5:0.218671 6:0.660492 7:-0.808491 8:0.999905 -1 1:0.342757 2:-0.497129 3:0.149543 4:0.530556 5:2.127664 6:0.622441 7:-0.944308 8:-0.445645 -1 1:-0.844335 2:0.284790 3:-0.470426 4:0.154433 5:0.782692 6:-0.430303 7:0.664367 8:-1.040871 -1 1:-0.547562 2:-0.653513 3:0.046215 4:1.972362 5:-0.197837 6:1.079052 7:0.619094 8:-0.700742 1 1:0.639530 2:2.286502 3:0.459528 4:-1.287373 5:-0.692439 6:-1.077170 7:-1.034853 8:2.190358 1 1:1.233077 2:-0.497129 3:1.596138 4:0.969366 5:-0.692439 6:1.434195 7:-0.702856 8:0.999905 -1 1:1.826623 2:-0.622237 3:0.356200 4:1.721613 5:0.869464 6:0.115094 7:-0.908090 8:2.530487 -1 1:0.639530 2:-0.403299 3:-1.297051 4:-0.033629 5:0.435602 6:-1.013751 7:1.029563 8:0.149582 -1 1:-0.547562 2:0.034575 3:0.356200 4:0.405181 5:1.043009 6:0.495604 7:0.033573 8:-0.615709 -1 1:-0.844335 2:-0.935004 3:-0.780410 4:0.279807 5:0.175285 6:-0.861547 7:-0.717947 8:-0.870806 -1 1:0.639530 2:0.503727 3:-0.418762 4:-1.287373 5:-0.692439 6:-0.988384 7:-0.968453 8:1.850228 -1 1:-0.547562 2:-0.684790 3:-3.570271 4:-1.287373 5:-0.692439 6:-1.242057 7:-1.098234 8:-0.870806 -1 1:1.826623 2:0.253513 3:0.356200 4:0.467869 5:0.366184 6:0.495604 7:-0.579112 8:0.489711 -1 1:-0.844335 2:-0.966281 3:-0.367098 4:-0.159003 5:-0.180482 6:-0.874231 7:2.402822 8:-0.700742 1 1:-1.141108 2:0.535004 3:-3.570271 4:-1.287373 5:-0.692439 6:0.546339 7:1.391741 8:-0.700742 1 1:0.342757 2:1.285646 3:1.802794 4:-1.287373 5:-0.692439 6:0.723910 7:-0.968453 8:1.595131 1 1:-1.141108 2:2.130119 3:1.802794 4:0.279807 5:-0.692439 6:0.292666 7:-0.111298 8:0.659776 -1 1:1.826623 2:1.285646 3:0.769512 4:-1.287373 5:-0.692439 6:-0.544456 7:-0.874891 8:1.765196 1 1:-1.141108 2:0.097129 3:0.046215 4:-0.033629 5:-0.692439 6:-0.582507 7:-0.657584 8:0.234614 -1 1:1.233077 2:-0.809897 3:0.149543 4:-1.287373 5:-0.692439 6:0.609757 7:0.039609 8:2.020293 -1 1:-1.141108 2:-0.497129 3:-0.263769 4:1.282802 5:0.539729 6:1.205889 7:-0.902054 8:-0.955839 -1 1:-0.250789 2:1.848628 3:-0.263769 4:0.279807 5:-0.085032 6:0.254615 7:-0.606275 8:-0.615709 -1 1:-0.844335 2:-1.279049 3:-0.728746 4:-1.287373 5:-0.692439 6:-1.635251 7:-0.645511 8:-1.040871 1 1:1.233077 2:-0.653513 3:0.252871 4:1.220115 5:1.173167 6:0.939532 7:0.570804 8:0.829840 1 1:1.826623 2:0.253513 3:-0.367098 4:0.969366 5:-0.692439 6:1.167838 7:-0.093189 8:0.404679 1 1:1.529850 2:1.379476 3:0.976169 4:-1.287373 5:-0.692439 6:-0.201997 7:-0.512712 8:1.340034 -1 1:0.639530 2:-0.309469 3:-0.263769 4:1.157428 5:-0.692439 6:0.279982 7:-0.639475 8:-0.785774 -1 1:-1.141108 2:-0.841174 3:0.046215 4:0.405181 5:0.305443 6:1.459562 7:-0.376896 8:-1.040871 1 1:-0.547562 2:0.097129 3:-0.057113 4:0.467869 5:1.086395 6:0.115094 7:1.216689 8:-0.275580 -1 1:-1.141108 2:-0.590960 3:0.459528 4:1.220115 5:0.088512 6:0.318033 7:-0.705874 8:-0.785774 -1 1:-0.547562 2:0.222236 3:-0.263769 4:1.345490 5:-0.692439 6:1.015634 7:1.898791 8:-0.785774 1 1:0.936304 2:1.191816 3:-0.160441 4:-1.287373 5:-0.692439 6:-0.201997 7:-0.268242 8:0.234614 1 1:-0.844335 2:0.159683 3:-0.470426 4:-1.287373 5:-0.692439 6:-0.240048 7:-0.370859 8:1.169970 1 1:0.342757 2:2.067565 3:0.356200 4:0.405181 5:1.103750 6:1.472246 7:1.696575 8:1.680164 1 1:0.936304 2:-0.747344 3:0.356200 4:0.718617 5:0.097190 6:1.129787 7:1.204616 8:-0.105515 -1 1:1.826623 2:1.817351 3:0.046215 4:-1.287373 5:-0.692439 6:0.394135 7:-0.820564 8:0.319646 -1 1:-0.844335 2:2.255226 3:-0.987067 4:-0.284378 5:2.561526 6:-0.772762 7:0.552695 8:-0.785774 -1 1:0.045984 2:0.222236 3:0.046215 4:-1.287373 5:-0.692439 6:0.292666 7:-0.509694 8:-0.785774 -1 1:-0.547562 2:-0.653513 3:-0.780410 4:0.467869 5:0.218671 6:0.736594 7:0.078845 8:-0.785774 -1 1:0.342757 2:-0.559683 3:2.009450 4:1.032053 5:-0.692439 6:0.914165 7:-0.503658 8:2.700552 -1 1:1.233077 2:-1.122665 3:-0.728746 4:-0.033629 5:-0.692439 6:-0.963017 7:-1.013726 8:0.744808 -1 1:1.826623 2:0.566280 3:0.562856 4:-1.287373 5:-0.692439 6:-0.620558 7:2.924962 8:2.020293 -1 1:-1.141108 2:-0.841174 3:-3.570271 4:-1.287373 5:-0.692439 6:-4.057829 7:-0.651547 8:-0.700742 1 1:-0.547562 2:2.380333 3:0.046215 4:1.533551 5:4.019302 6:-0.189314 7:-0.947326 8:1.680164 -1 1:0.342757 2:0.472450 3:0.666184 4:-1.287373 5:-0.692439 6:-4.057829 7:0.507423 8:3.040681 -1 1:-0.547562 2:-0.403299 3:-0.263769 4:-1.287373 5:-0.692439 6:-0.151263 7:-0.947326 8:-1.040871 1 1:0.045984 2:0.409897 3:0.149543 4:-1.287373 5:-0.692439 6:-1.039119 7:-0.588166 8:2.275390 1 1:0.045984 2:0.472450 3:0.046215 4:-1.287373 5:-0.692439 6:-0.100528 7:2.143261 8:-0.955839 -1 1:0.342757 2:-0.403299 3:0.149543 4:1.408177 5:-0.041646 6:0.520971 7:-0.630420 8:-0.020483 -1 1:0.342757 2:-0.778620 3:0.252871 4:-0.159003 5:-0.111064 6:0.203880 7:1.584903 8:0.829840 1 1:1.233077 2:-0.403299 3:0.046215 4:-1.287373 5:-0.692439 6:-0.189314 7:1.458141 8:-0.020483 1 1:1.529850 2:0.284790 3:0.046215 4:-1.287373 5:-0.692439 6:0.279982 7:0.543641 8:0.999905 -1 1:1.529850 2:-1.529263 3:0.459528 4:0.279807 5:-0.692439 6:-0.049793 7:-0.579112 8:0.404679 1 1:2.123396 2:0.535004 3:0.252871 4:0.342494 5:0.557083 6:0.520971 7:0.256916 8:1.425067 -1 1:1.826623 2:-0.903727 3:-0.367098 4:-1.287373 5:-0.692439 6:-0.772762 7:-0.920163 8:-0.190548 -1 1:-1.141108 2:0.065852 3:0.976169 4:1.032053 5:-0.692439 6:0.406818 7:-0.829618 8:-0.360612 -1 1:-0.844335 2:-0.778620 3:-0.263769 4:0.405181 5:0.062481 6:0.153145 7:-0.551948 8:-1.040871 1 1:2.123396 2:0.441173 3:-3.570271 4:-1.287373 5:-0.692439 6:2.575724 7:0.320297 8:0.574743 -1 1:0.936304 2:0.472450 3:0.252871 4:0.342494 5:0.478988 6:-0.760078 7:0.528550 8:1.510099 -1 1:-0.844335 2:-0.278192 3:0.562856 4:1.533551 5:0.452956 6:0.356084 7:-0.769255 8:-0.785774 -1 1:-1.141108 2:-0.590960 3:0.872840 4:-0.221691 5:0.218671 6:-0.341517 7:0.673421 8:-0.530677 1 1:0.639530 2:1.285646 3:-0.367098 4:-1.287373 5:-0.692439 6:-0.975700 7:-0.886963 8:1.425067 1 1:-0.844335 2:0.222236 3:1.492809 4:1.282802 5:-0.189159 6:0.000941 7:2.562784 8:-0.020483 1 1:1.233077 2:2.380333 3:0.252871 4:-1.287373 5:-0.692439 6:-0.772762 7:2.170424 8:0.489711 -1 1:-1.141108 2:-0.872451 3:-0.470426 4:-1.287373 5:-0.692439 6:0.419502 7:-0.630420 8:-0.700742 -1 1:-1.141108 2:0.503727 3:0.769512 4:0.405181 5:-0.692439 6:-0.595191 7:-0.727001 8:2.190358 -1 1:-0.844335 2:-0.872451 3:-0.677082 4:-0.597814 5:-0.692439 6:-1.204006 7:-0.165625 8:-0.955839 1 1:3.310488 2:0.472450 3:0.046215 4:0.718617 5:0.262057 6:0.647808 7:-0.962417 8:0.829840 -1 1:-0.547562 2:-1.028834 3:0.252871 4:-0.096316 5:-0.232546 6:-0.379568 7:-0.733038 8:-0.955839 -1 1:0.936304 2:-0.465853 3:1.182825 4:-0.159003 5:-0.692439 6:-1.178639 7:-0.714929 8:1.255002 -1 1:0.045984 2:-0.841174 3:-0.212105 4:0.091745 5:-0.692439 6:-0.924966 7:-0.977508 8:-1.040871 -1 1:-0.547562 2:0.034575 3:-0.883738 4:1.408177 5:0.678565 6:0.533655 7:1.038618 8:-0.445645 -1 1:-0.547562 2:-0.278192 3:0.872840 4:1.345490 5:0.695919 6:0.812696 7:-0.681729 8:-0.445645 -1 1:-1.141108 2:-1.153942 3:0.666184 4:0.655930 5:0.392216 6:0.787328 7:-0.720965 8:-0.870806 1 1:0.639530 2:0.816495 3:0.562856 4:-1.287373 5:-0.692439 6:-0.316150 7:-0.886963 8:1.425067 -1 1:-1.141108 2:0.128406 3:1.389481 4:-1.287373 5:-0.692439 6:-1.204006 7:-0.633439 8:-1.040871 1 1:0.639530 2:2.161395 3:1.182825 4:-1.287373 5:-0.692439 6:0.444869 7:-0.585148 8:2.785584 1 1:-1.141108 2:0.941602 3:1.079497 4:1.596238 5:-0.692439 6:1.281991 7:-0.304460 8:-1.040871 -1 1:1.529850 2:1.035432 3:0.459528 4:0.593243 5:0.175285 6:-0.138579 7:-0.929217 8:0.999905 -1 1:0.342757 2:0.159683 3:0.459528 4:0.405181 5:-0.501540 6:-0.303466 7:-0.099226 8:0.574743 -1 1:-0.844335 2:-1.153942 3:-0.263769 4:0.154433 5:0.305443 6:0.622441 7:-0.002645 8:-0.445645 -1 1:-0.250789 2:-0.153085 3:0.252871 4:-0.347065 5:0.218671 6:-0.722027 7:-1.101252 8:-0.785774 -1 1:0.342757 2:0.816495 3:0.459528 4:-1.287373 5:-0.692439 6:0.216564 7:-0.766237 8:2.700552 -1 1:-0.250789 2:-0.246915 3:-1.297051 4:-0.472440 5:-0.692439 6:-1.216690 7:-1.001653 8:-0.955839 -1 1:0.342757 2:-1.497986 3:-0.470426 4:-1.287373 5:-0.692439 6:-0.658609 7:-0.615330 8:-0.530677 1 1:-0.844335 2:0.034575 3:1.079497 4:1.909674 5:1.216554 6:2.245949 7:-0.443295 8:-0.190548 1 1:-1.141108 2:-0.372022 3:0.976169 4:0.593243 5:-0.692439 6:0.064360 7:1.156325 8:0.404679 1 1:0.342757 2:-0.747344 3:0.356200 4:0.405181 5:-0.692439 6:0.457553 7:-0.283333 8:1.595131 -1 1:0.342757 2:-0.121808 3:0.872840 4:0.593243 5:0.218671 6:0.901481 7:-0.666638 8:0.744808 1 1:1.826623 2:0.128406 3:0.046215 4:0.342494 5:0.305443 6:-0.113212 7:-0.805473 8:0.659776 -1 1:-0.250789 2:-0.309469 3:-0.367098 4:-1.287373 5:-0.692439 6:-1.191323 7:-0.995617 8:-1.040871 -1 1:-0.844335 2:-1.560539 3:0.459528 4:1.846987 5:-0.301963 6:0.153145 7:-0.150534 8:-1.040871 -1 1:0.639530 2:-0.559683 3:0.149543 4:0.718617 5:0.956236 6:0.723910 7:-0.446313 8:1.850228 -1 1:0.045984 2:-0.090532 3:0.046215 4:-1.287373 5:-0.692439 6:1.586399 7:1.304215 8:-0.615709 -1 1:0.045984 2:0.253513 3:0.872840 4:-0.033629 5:1.650416 6:0.394135 7:-0.727001 8:-0.870806 -1 1:-0.250789 2:-0.027978 3:0.046215 4:0.593243 5:0.478988 6:1.383460 7:-0.059990 8:-0.275580 1 1:1.826623 2:-0.403299 3:-0.160441 4:-1.287373 5:-0.692439 6:0.051676 7:-0.603257 8:0.744808 -1 1:-0.844335 2:-0.215639 3:-0.160441 4:0.969366 5:1.043009 6:0.774645 7:-0.551948 8:-1.040871 -1 1:-0.547562 2:-0.841174 3:0.356200 4:-0.159003 5:-0.119741 6:-0.049793 7:0.534586 8:-0.870806 1 1:-1.141108 2:-0.246915 3:0.356200 4:-1.287373 5:-0.692439 6:0.165829 7:-0.585148 8:-0.870806 1 1:-0.250789 2:0.284790 3:0.459528 4:0.154433 5:-0.006937 6:-0.455670 7:-0.449331 8:0.064549 1 1:0.936304 2:0.972878 3:0.976169 4:1.470864 5:-0.692439 6:2.284000 7:-0.407077 8:0.234614 -1 1:-0.547562 2:-0.684790 3:-0.883738 4:-0.347065 5:0.123221 6:-0.937649 7:0.498368 8:-1.040871 -1 1:-0.547562 2:-1.466709 3:-3.570271 4:-1.287373 5:-0.692439 6:-4.057829 7:-1.116343 8:-0.955839 -1 1:0.639530 2:1.379476 3:-0.057113 4:0.342494 5:0.765337 6:0.203880 7:0.480259 8:1.340034 1 1:-1.141108 2:2.098842 3:0.666184 4:-0.409752 5:0.912850 6:0.000941 7:0.634185 8:-0.955839 -1 1:-0.844335 2:-1.060111 3:0.459528 4:0.405181 5:-0.414768 6:0.330716 7:-1.119361 8:-0.955839 -1 1:-0.844335 2:0.441173 3:-0.780410 4:-1.287373 5:-0.692439 6:-0.671293 7:0.649276 8:2.445455 -1 1:0.045984 2:-0.559683 3:-0.470426 4:0.781305 5:0.973591 6:-1.013751 7:1.491340 8:-0.020483 -1 1:1.233077 2:-0.090532 3:0.149543 4:-0.096316 5:-0.692439 6:-1.127904 7:3.030598 8:1.084937 -1 1:-0.547562 2:-0.027978 3:-0.780410 4:-1.287373 5:-0.692439 6:-0.658609 7:-0.050935 8:-0.530677 -1 1:-0.844335 2:-1.060111 3:-0.057113 4:0.843992 5:-0.024292 6:0.711226 7:-0.213915 8:-0.785774 -1 1:-0.844335 2:0.566280 3:-0.367098 4:1.282802 5:3.472636 6:1.104420 7:0.193535 8:-1.040871 1 1:-0.844335 2:1.879905 3:0.459528 4:1.345490 5:1.849992 6:1.015634 7:2.372641 8:-0.955839 -1 1:0.342757 2:0.566280 3:-0.263769 4:0.906679 5:0.522374 6:-0.430303 7:-0.183734 8:-0.615709 -1 1:-0.250789 2:-0.653513 3:-0.057113 4:0.154433 5:0.010417 6:-0.049793 7:1.440032 8:-0.445645 -1 1:0.045984 2:-0.278192 3:0.459528 4:1.220115 5:-0.692439 6:0.939532 7:-0.711910 8:0.404679 -1 1:-0.547562 2:0.128406 3:-0.470426 4:-0.033629 5:0.522374 6:0.229247 7:-1.158597 8:-0.190548 1 1:0.342757 2:0.566280 3:0.562856 4:0.906679 5:0.695919 6:-0.049793 7:-0.334642 8:-0.700742 1 1:0.045984 2:1.097985 3:0.304536 4:-1.287373 5:-0.692439 6:2.068378 7:-0.705874 8:-0.105515 -1 1:1.826623 2:-1.435432 3:0.666184 4:-1.287373 5:-0.692439 6:0.165829 7:-0.630420 8:0.404679 -1 1:-0.844335 2:-1.185218 3:-0.057113 4:-1.287373 5:-0.692439 6:-1.749404 7:0.459132 8:-0.530677 1 1:-1.141108 2:0.441173 3:-0.057113 4:1.345490 5:1.476871 6:1.307358 7:-0.322569 8:-0.785774 -1 1:-1.141108 2:-0.809897 3:0.562856 4:1.533551 5:0.105867 6:0.571706 7:-0.428204 8:-0.615709 1 1:-0.547562 2:0.222236 3:0.459528 4:1.032053 5:0.886819 6:1.434195 7:2.270024 8:-0.190548 1 1:-0.844335 2:1.629690 3:0.252871 4:-1.287373 5:-0.692439 6:0.609757 7:-1.158597 8:0.404679 -1 1:-0.250789 2:-0.684790 3:0.562856 4:-0.597814 5:-0.137096 6:-1.609883 7:-0.567039 8:-0.275580 -1 1:-0.547562 2:-0.434576 3:0.252871 4:0.593243 5:0.175285 6:0.203880 7:-0.204861 8:-0.870806 -1 1:0.045984 2:2.130119 3:2.112778 4:0.655930 5:-0.692439 6:-0.442987 7:0.628149 8:0.319646 -1 1:-0.844335 2:0.284790 3:0.046215 4:-0.472440 5:0.218671 6:-0.772762 7:0.000373 8:-0.955839 1 1:0.045984 2:0.785218 3:0.459528 4:-1.287373 5:-0.692439 6:0.825379 7:0.145245 8:2.870616 -1 1:0.045984 2:-0.684790 3:0.149543 4:-0.221691 5:-0.692439 6:-0.810813 7:-0.536858 8:-0.445645 -1 1:-0.844335 2:-0.027978 3:0.562856 4:1.721613 5:1.043009 6:0.876114 7:2.082898 8:0.659776 -1 1:-0.844335 2:-0.121808 3:-0.470426 4:0.154433 5:0.227348 6:0.229247 7:-0.017736 8:-0.530677 -1 1:-0.547562 2:-1.216495 3:-0.883738 4:0.091745 5:0.305443 6:-0.442987 7:3.703646 8:-0.700742 -1 1:1.529850 2:-0.997558 3:-0.367098 4:-1.287373 5:-0.692439 6:-1.204006 7:-0.995617 8:-0.020483 1 1:-1.141108 2:0.316066 3:-0.160441 4:1.220115 5:-0.692439 6:0.292666 7:-0.832637 8:-0.955839 -1 1:-0.547562 2:-0.966281 3:0.562856 4:-0.409752 5:-0.215191 6:-0.963017 7:-0.672675 8:-0.785774 -1 1:-1.141108 2:-0.935004 3:0.562856 4:-1.287373 5:-0.692439 6:0.051676 7:0.389715 8:-0.530677 -1 1:-0.547562 2:-0.309469 3:-0.470426 4:-1.287373 5:-0.692439 6:-0.734711 7:-0.388968 8:-0.870806 1 1:3.013715 2:-0.653513 3:0.459528 4:0.279807 5:0.904173 6:0.584390 7:-0.180716 8:1.084937 -1 1:-1.141108 2:-0.935004 3:-0.057113 4:0.718617 5:1.129781 6:1.002950 7:-0.274278 8:-0.700742 -1 1:-0.844335 2:1.129262 3:0.149543 4:0.029058 5:0.765337 6:-0.810813 7:-1.052962 8:-0.785774 1 1:0.639530 2:0.409897 3:0.046215 4:0.154433 5:0.435602 6:0.432186 7:0.211644 8:-0.360612 1 1:-1.141108 2:-0.497129 3:0.769512 4:-1.287373 5:-0.692439 6:-0.519089 7:0.812256 8:2.445455 -1 1:-0.844335 2:-0.372022 3:-1.607036 4:-0.159003 5:0.348830 6:-1.127904 7:-0.195807 8:-0.615709 -1 1:-0.844335 2:0.222236 3:0.666184 4:-0.221691 5:0.895496 6:-0.569823 7:-1.077107 8:-0.955839 -1 1:-1.141108 2:-0.121808 3:-0.160441 4:0.655930 5:0.938882 6:-0.151263 7:0.063755 8:-0.955839 -1 1:-0.547562 2:0.253513 3:-3.570271 4:-1.287373 5:-0.692439 6:0.825379 7:-0.506676 8:0.659776 -1 1:0.639530 2:1.035432 3:0.459528 4:1.282802 5:0.522374 6:1.789337 7:0.299170 8:-0.530677 -1 1:-1.141108 2:0.503727 3:-0.057113 4:-0.409752 5:0.591792 6:-0.912282 7:-0.992599 8:-1.040871 -1 1:1.233077 2:-0.434576 3:0.562856 4:-1.287373 5:-0.692439 6:-0.937649 7:1.159344 8:0.064549 1 1:0.639530 2:0.847771 3:0.149543 4:0.906679 5:-0.692439 6:0.203880 7:0.468187 8:1.425067 -1 1:0.639530 2:-0.935004 3:-3.570271 4:-1.287373 5:-0.692439 6:-0.278099 7:0.087900 8:-0.190548 -1 1:0.045984 2:-0.747344 3:-0.470426 4:0.154433 5:-0.692439 6:-0.481038 7:-0.087153 8:-0.955839 -1 1:-0.844335 2:-0.153085 3:0.459528 4:0.530556 5:0.869464 6:0.520971 7:0.072809 8:-0.700742 -1 1:-0.547562 2:-0.403299 3:-0.883738 4:0.342494 5:-0.145773 6:0.064360 7:-0.464422 8:-0.955839 -1 1:0.045984 2:-0.215639 3:-0.263769 4:-1.287373 5:-0.692439 6:-0.392252 7:-1.043907 8:-0.785774 1 1:1.529850 2:1.348199 3:0.459528 4:-1.287373 5:-0.692439 6:0.102411 7:-0.977508 8:0.999905 -1 1:-0.547562 2:-1.060111 3:-3.570271 4:0.154433 5:-0.692439 6:-0.392252 7:0.908837 8:-0.700742 -1 1:-1.141108 2:-0.590960 3:-0.263769 4:1.596238 5:-0.015615 6:1.091736 7:0.072809 8:-1.040871 -1 1:-0.844335 2:-1.060111 3:-0.470426 4:1.032053 5:-0.041646 6:0.660492 7:0.112045 8:-0.955839 -1 1:-0.547562 2:-0.903727 3:-0.367098 4:0.467869 5:-0.692439 6:-0.049793 7:-1.031835 8:-0.785774 -1 1:0.639530 2:0.128406 3:-0.057113 4:0.593243 5:0.348830 6:-0.252732 7:-0.023772 8:-0.105515 1 1:0.936304 2:-0.372022 3:0.562856 4:0.655930 5:-0.692439 6:0.495604 7:1.977263 8:0.829840 1 1:1.826623 2:-0.966281 3:0.821176 4:0.718617 5:-0.692439 6:0.368767 7:1.065781 8:1.935261 1 1:1.826623 2:-0.309469 3:0.046215 4:0.405181 5:-0.692439 6:-0.569823 7:-0.998635 8:0.574743 -1 1:0.342757 2:-0.684790 3:-0.780410 4:0.467869 5:0.027772 6:0.254615 7:0.081863 8:-0.275580 1 1:2.123396 2:0.472450 3:0.769512 4:0.906679 5:0.435602 6:-0.468354 7:-0.639475 8:0.744808 -1 1:-0.844335 2:-1.279049 3:0.252871 4:-0.597814 5:-0.171805 6:-0.252732 7:0.166372 8:-0.955839 1 1:-0.250789 2:2.067565 3:0.046215 4:0.091745 5:1.043009 6:0.559022 7:-0.192788 8:0.234614 -1 1:0.342757 2:-0.153085 3:0.252871 4:-1.287373 5:-0.692439 6:-0.810813 7:-0.817546 8:-0.275580 -1 1:-0.250789 2:-1.153942 3:-0.057113 4:0.593243 5:0.227348 6:-0.011742 7:0.359533 8:-0.700742 -1 1:2.420169 2:-1.028834 3:0.252871 4:1.220115 5:-0.223868 6:0.419502 7:-0.283333 8:1.255002 -1 1:0.045984 2:-0.966281 3:-3.570271 4:-1.287373 5:-0.692439 6:-0.506405 7:0.416878 8:-0.190548 1 1:1.233077 2:0.691388 3:-0.160441 4:-1.287373 5:-0.692439 6:0.368767 7:-1.034853 8:0.659776 -1 1:0.045984 2:0.190959 3:0.976169 4:-0.597814 5:0.652533 6:0.318033 7:0.380660 8:-0.445645 -1 1:-1.141108 2:-1.153942 3:-0.263769 4:0.091745 5:-0.119741 6:0.482920 7:0.220698 8:-1.040871 -1 1:-0.547562 2:-0.684790 3:-0.470426 4:-0.221691 5:0.695919 6:0.584390 7:-0.056972 8:-1.040871 -1 1:-0.250789 2:-0.309469 3:-0.573754 4:0.655930 5:-0.310641 6:-0.316150 7:-0.126389 8:-0.955839 -1 1:0.639530 2:1.942458 3:1.286153 4:-1.287373 5:-0.692439 6:1.117103 7:2.985326 8:0.999905 1 1:2.123396 2:0.691388 3:1.286153 4:0.781305 5:0.574438 6:0.584390 7:-0.657584 8:1.510099 1 1:1.233077 2:1.442030 3:1.906122 4:1.596238 5:1.312003 6:0.711226 7:-0.926199 8:0.829840 1 1:0.936304 2:-0.434576 3:0.252871 4:-1.287373 5:-0.692439 6:-0.303466 7:-0.657584 8:-0.190548 1 1:0.936304 2:-0.215639 3:-0.160441 4:-1.287373 5:-0.692439 6:0.102411 7:-0.645511 8:0.744808 -1 1:0.342757 2:-0.809897 3:0.149543 4:0.781305 5:-0.692439 6:0.723910 7:-0.307478 8:-0.530677 -1 1:-0.844335 2:-1.122665 3:-0.160441 4:0.530556 5:-0.692439 6:-0.683976 7:-0.364823 8:-0.190548 1 1:-1.141108 2:-0.434576 3:-0.367098 4:0.593243 5:-0.050323 6:0.584390 7:0.860547 8:-0.700742 -1 1:1.826623 2:0.378620 3:-0.057113 4:-1.287373 5:-0.692439 6:-0.633242 7:-0.684747 8:0.234614 -1 1:-0.250789 2:0.159683 3:0.976169 4:1.282802 5:1.346712 6:0.926848 7:0.700585 8:-0.530677 -1 1:-0.547562 2:-0.465853 3:-0.263769 4:0.906679 5:0.340152 6:-0.189314 7:2.801218 8:0.064549 -1 1:-1.141108 2:0.972878 3:0.666184 4:1.157428 5:1.667770 6:1.205889 7:-0.609293 8:-0.530677 -1 1:-0.547562 2:-0.215639 3:-0.057113 4:0.091745 5:-0.692439 6:-0.417619 7:-1.146524 8:-0.700742 -1 1:-0.844335 2:-0.903727 3:-0.367098 4:0.279807 5:-0.336672 6:-1.584516 7:0.030555 8:-0.700742 -1 1:-1.141108 2:-0.653513 3:0.046215 4:0.342494 5:-0.258577 6:-0.151263 7:0.377642 8:-1.040871 -1 1:-0.844335 2:-0.559683 3:0.562856 4:-0.597814 5:0.019094 6:-1.597200 7:0.057718 8:-0.955839 1 1:-0.844335 2:0.879048 3:-0.057113 4:0.530556 5:0.409570 6:-0.341517 7:-0.370859 8:0.744808 -1 1:0.936304 2:0.128406 3:0.872840 4:-1.287373 5:-0.692439 6:0.711226 7:-0.506676 8:1.510099 -1 1:-1.141108 2:-0.027978 3:0.252871 4:-0.159003 5:-0.145773 6:-0.189314 7:-0.564021 8:-0.615709 -1 1:0.639530 2:0.065852 3:0.149543 4:1.533551 5:1.303326 6:0.203880 7:0.788111 8:0.064549 -1 1:0.342757 2:0.347343 3:0.562856 4:-1.287373 5:-0.692439 6:-0.658609 7:-0.862818 8:3.040681 -1 1:-0.547562 2:0.034575 3:0.046215 4:0.405181 5:-0.692439 6:0.609757 7:-0.398023 8:-0.530677 -1 1:-0.547562 2:-0.935004 3:-0.367098 4:-1.287373 5:-0.692439 6:-0.595191 7:0.160335 8:-0.955839 -1 1:0.045984 2:-0.340746 3:0.356200 4:-0.033629 5:0.175285 6:-0.455670 7:-1.068052 8:-0.530677 -1 1:-1.141108 2:-0.403299 3:-0.057113 4:-0.033629 5:-0.692439 6:-0.595191 7:0.951091 8:-0.105515 -1 1:0.045984 2:1.035432 3:-0.367098 4:0.655930 5:1.771897 6:0.102411 7:-0.708892 8:-0.870806 -1 1:-0.547562 2:0.253513 3:0.769512 4:-1.287373 5:-0.692439 6:-0.506405 7:-0.567039 8:-0.530677 -1 1:-0.844335 2:0.003299 3:0.459528 4:1.157428 5:-0.050323 6:0.888797 7:-0.636457 8:-0.445645 -1 1:1.529850 2:-0.935004 3:-0.057113 4:-1.287373 5:-0.692439 6:-0.988384 7:-0.820564 8:2.105325 -1 1:0.342757 2:-0.121808 3:1.182825 4:-1.287373 5:-0.692439 6:0.267298 7:-0.407077 8:0.404679 -1 1:-1.141108 2:-0.590960 3:-0.883738 4:-1.287373 5:-0.692439 6:-0.874231 7:-1.188779 8:-1.040871 -1 1:-0.250789 2:2.192672 3:-0.057113 4:-0.347065 5:0.435602 6:-0.138579 7:-0.521767 8:0.064549 -1 1:0.639530 2:-0.559683 3:-0.160441 4:-1.287373 5:-0.692439 6:-0.975700 7:-0.672675 8:-0.360612 -1 1:0.045984 2:0.816495 3:0.252871 4:0.279807 5:1.849992 6:0.368767 7:-0.262206 8:-0.275580 1 1:-0.844335 2:2.130119 3:-0.470426 4:0.154433 5:6.648507 6:-0.240048 7:-0.222970 8:2.190358 -1 1:0.045984 2:2.380333 3:0.046215 4:1.157428 5:5.763428 6:0.597073 7:5.605081 8:-0.190548 -1 1:-0.547562 2:-0.403299 3:-0.367098 4:0.718617 5:-0.206514 6:-0.861547 7:-1.037871 8:-1.040871 -1 1:-0.547562 2:-0.059255 3:-3.570271 4:-1.287373 5:-0.692439 6:-1.571832 7:1.086908 8:3.295778 1 1:0.045984 2:0.660111 3:0.872840 4:-1.287373 5:-0.692439 6:1.522980 7:0.522514 8:-0.955839 -1 1:-0.547562 2:0.190959 3:-0.573754 4:0.217120 5:1.693802 6:-0.544456 7:3.404849 8:-0.700742 -1 1:-0.250789 2:-1.216495 3:0.046215 4:-1.287373 5:-0.692439 6:-1.381577 7:-0.250133 8:-0.700742 -1 1:1.529850 2:0.065852 3:0.046215 4:1.470864 5:0.123221 6:0.140462 7:-0.295406 8:0.574743 -1 1:-0.250789 2:-0.684790 3:-0.780410 4:-0.096316 5:0.053803 6:-0.810813 7:-0.959399 8:-0.785774 1 1:1.529850 2:1.973735 3:0.821176 4:-0.347065 5:-0.692439 6:-0.252732 7:2.236824 8:1.340034 -1 1:-1.141108 2:-0.309469 3:-0.212105 4:-1.287373 5:-0.692439 6:-0.937649 7:0.567786 8:-0.190548 -1 1:-0.250789 2:-0.465853 3:-0.780410 4:0.029058 5:0.678565 6:-0.138579 7:-0.542894 8:-0.785774 -1 1:-1.141108 2:0.503727 3:0.046215 4:1.094741 5:-0.692439 6:0.153145 7:-0.911108 8:-0.955839 -1 1:1.233077 2:-1.748200 3:0.149543 4:0.154433 5:-0.692439 6:0.000941 7:0.386697 8:0.744808 1 1:-0.250789 2:1.629690 3:0.769512 4:0.781305 5:3.420573 6:0.470237 7:-0.645511 8:-0.955839 1 1:-0.250789 2:1.629690 3:0.459528 4:1.157428 5:0.912850 6:0.229247 7:1.503413 8:-0.190548 -1 1:-1.141108 2:-1.466709 3:-0.883738 4:-0.660501 5:-0.380059 6:-0.531772 7:-0.612311 8:-0.955839 -1 1:-1.141108 2:-0.434576 3:0.356200 4:-1.287373 5:-0.692439 6:1.687868 7:0.646258 8:-0.785774 1 1:1.826623 2:0.847771 3:0.769512 4:1.721613 5:1.364067 6:0.711226 7:1.596976 8:1.510099 1 1:-0.250789 2:-0.434576 3:-0.367098 4:-0.472440 5:-0.275932 6:-1.153272 7:0.622113 8:-0.870806 1 1:1.529850 2:-0.278192 3:0.666184 4:0.718617 5:0.826078 6:0.279982 7:-0.639475 8:0.234614 -1 1:-0.844335 2:-1.310325 3:-0.470426 4:1.345490 5:-0.275932 6:1.459562 7:0.622113 8:-0.870806 1 1:-0.250789 2:1.723521 3:0.872840 4:0.405181 5:0.661210 6:0.165829 7:2.058753 8:1.595131 -1 1:1.233077 2:2.286502 3:0.562856 4:-1.287373 5:-0.692439 6:-0.747395 7:0.238807 8:2.870616 1 1:0.045984 2:-0.309469 3:0.149543 4:1.658926 5:1.103750 6:0.647808 7:2.771037 8:1.935261 1 1:0.639530 2:-0.184362 3:-0.470426 4:1.157428 5:-0.692439 6:0.216564 7:-0.684747 8:0.574743 1 1:1.233077 2:2.349056 3:0.356200 4:0.530556 5:1.737188 6:0.698543 7:0.401788 8:2.020293 1 1:-0.844335 2:-0.809897 3:0.666184 4:0.279807 5:0.869464 6:0.381451 7:-0.720965 8:0.829840 -1 1:-0.844335 2:0.941602 3:-0.470426 4:-1.287373 5:-0.692439 6:-0.747395 7:-0.883945 8:-0.955839 1 1:1.529850 2:-0.278192 3:0.666184 4:0.217120 5:-0.692439 6:-0.481038 7:2.445076 8:1.425067 1 1:0.936304 2:2.349056 3:1.079497 4:-1.287373 5:-0.692439 6:0.990267 7:-0.063008 8:0.659776 1 1:-1.141108 2:1.879905 3:0.976169 4:1.470864 5:3.732954 6:1.434195 7:-0.754165 8:-0.615709 -1 1:0.936304 2:-0.497129 3:-3.570271 4:-1.287373 5:-0.692439 6:-4.057829 7:-0.503658 8:-0.785774 1 1:0.342757 2:0.097129 3:0.252871 4:-1.287373 5:-0.692439 6:0.254615 7:-0.760201 8:0.404679 1 1:1.529850 2:1.097985 3:0.872840 4:-1.287373 5:-0.692439 6:-0.912282 7:-0.730019 8:1.680164 -1 1:-0.547562 2:-0.372022 3:1.182825 4:-1.287373 5:-0.692439 6:1.358093 7:1.126144 8:1.765196 -1 1:-0.844335 2:-0.653513 3:0.252871 4:-0.535127 5:-0.293286 6:-1.584516 7:-0.974490 8:-0.445645 1 1:0.342757 2:1.473307 3:-0.263769 4:-1.287373 5:-0.692439 6:0.115094 7:-1.016744 8:0.659776 -1 1:-0.547562 2:0.190959 3:-1.193723 4:0.029058 5:2.214437 6:0.305349 7:-0.893000 8:-0.955839 1 1:-0.250789 2:0.566280 3:-0.780410 4:-1.287373 5:-0.692439 6:-0.810813 7:-0.210897 8:-0.955839 -1 1:0.045984 2:-0.340746 3:-0.160441 4:-1.287373 5:-0.692439 6:-0.011742 7:-0.002645 8:-0.360612 -1 1:0.342757 2:-0.309469 3:0.149543 4:0.467869 5:-0.692439 6:-1.026435 7:-0.195807 8:-0.530677 -1 1:0.639530 2:-1.279049 3:-0.160441 4:0.593243 5:-0.692439 6:-0.734711 7:-0.479513 8:0.659776 -1 1:-0.844335 2:-0.403299 3:-0.470426 4:1.596238 5:0.852110 6:0.444869 7:-0.171661 8:-0.785774 -1 1:1.529850 2:-0.465853 3:-0.883738 4:-1.287373 5:-0.692439 6:-0.100528 7:-0.277297 8:0.744808 -1 1:0.342757 2:0.065852 3:0.252871 4:1.220115 5:-0.024292 6:0.267298 7:-0.612311 8:-0.445645 1 1:-1.141108 2:0.785218 3:0.046215 4:-1.287373 5:-0.692439 6:0.749277 7:-0.416132 8:-0.445645 1 1:-0.844335 2:1.442030 3:0.252871 4:-0.221691 5:0.557083 6:-1.089853 7:-0.075080 8:-0.020483 -1 1:-0.547562 2:-1.435432 3:-0.263769 4:0.217120 5:-0.215191 6:-0.290783 7:-0.307478 8:-0.020483 -1 1:-0.844335 2:-1.028834 3:-0.367098 4:0.217120 5:-0.310641 6:-0.265415 7:-0.150534 8:-0.870806 -1 1:-0.547562 2:-0.465853 3:-0.677082 4:0.405181 5:0.739305 6:-0.379568 7:-0.138462 8:-0.955839 1 1:0.045984 2:0.785218 3:1.182825 4:-1.287373 5:-0.692439 6:-0.100528 7:0.202590 8:2.360423 -1 1:-0.547562 2:-0.278192 3:-0.160441 4:0.091745 5:-0.692439 6:-0.886915 7:-0.497622 8:-0.785774 1 1:0.045984 2:0.128406 3:0.562856 4:-1.287373 5:-0.692439 6:0.038992 7:0.193535 8:-0.530677 1 1:-0.547562 2:1.660967 3:0.976169 4:1.032053 5:0.348830 6:1.586399 7:0.525532 8:-0.785774 1 1:-0.547562 2:-0.590960 3:0.872840 4:0.969366 5:0.348830 6:1.713235 7:-1.040889 8:-0.870806 -1 1:0.045984 2:1.035432 3:0.149543 4:0.530556 5:0.400893 6:-0.087844 7:-0.404059 8:0.319646 -1 1:-0.547562 2:-2.029691 3:-0.677082 4:0.467869 5:-0.301963 6:-0.988384 7:-0.422168 8:-0.955839 -1 1:-0.250789 2:0.097129 3:0.562856 4:0.781305 5:0.435602 6:0.153145 7:-0.503658 8:-0.615709 1 1:1.233077 2:0.097129 3:0.356200 4:0.217120 5:4.513906 6:-0.417619 7:0.649276 8:1.595131 -1 1:-1.141108 2:0.159683 3:0.872840 4:0.405181 5:0.348830 6:-0.582507 7:0.130154 8:-1.040871 1 1:-0.250789 2:1.160539 3:0.046215 4:0.593243 5:2.153696 6:0.444869 7:-0.385950 8:0.149582 -1 1:-0.844335 2:0.159683 3:-0.677082 4:0.530556 5:0.626501 6:-0.417619 7:0.993345 8:-1.040871 1 1:0.639530 2:2.317779 3:0.046215 4:-1.287373 5:-0.692439 6:-0.138579 7:-0.434241 8:-0.190548 -1 1:1.826623 2:-1.654370 3:1.906122 4:0.154433 5:-0.267255 6:0.444869 7:-0.564021 8:1.169970 -1 1:-0.844335 2:-0.747344 3:0.046215 4:1.220115 5:-0.692439 6:0.774645 7:-0.766237 8:-0.275580 -1 1:0.342757 2:-0.684790 3:0.252871 4:0.405181 5:-0.692439 6:-0.379568 7:-0.811509 8:-0.105515 -1 1:-0.844335 2:-0.653513 3:-0.160441 4:-0.347065 5:-0.206514 6:-1.064486 7:0.585895 8:-0.615709 -1 1:-0.547562 2:0.785218 3:0.356200 4:0.906679 5:0.990945 6:0.787328 7:-0.431222 8:-0.360612 -1 1:-0.844335 2:0.785218 3:-0.677082 4:-1.287373 5:-0.692439 6:-0.290783 7:0.278043 8:-0.360612 -1 1:-1.141108 2:0.441173 3:1.286153 4:1.596238 5:0.565761 6:1.091736 7:-0.567039 8:-0.615709 1 1:-0.547562 2:-0.966281 3:-0.057113 4:1.345490 5:-0.692439 6:0.787328 7:0.093936 8:-0.530677 -1 1:0.342757 2:0.003299 3:0.149543 4:0.154433 5:0.279412 6:-0.734711 7:-0.684747 8:-0.275580 1 1:-0.844335 2:-0.246915 3:-0.263769 4:0.906679 5:-0.692439 6:0.203880 7:0.214662 8:-1.040871 -1 1:-0.547562 2:-1.153942 3:-3.570271 4:-1.287373 5:-0.692439 6:-4.057829 7:-0.506676 8:-1.040871 -1 1:-0.250789 2:-0.309469 3:1.079497 4:-0.535127 5:-0.015615 6:-0.455670 7:0.069791 8:-0.360612 -1 1:2.420169 2:-0.465853 3:0.562856 4:-1.287373 5:-0.692439 6:-1.064486 7:-1.010707 8:0.914873 -1 1:-0.250789 2:-0.590960 3:0.252871 4:-1.287373 5:-0.692439 6:-0.316150 7:-1.058998 8:-0.105515
5c0a7cdfdee8d717b1bdb1c6da7da216e95493d3
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/MA25.prev.tst
879cefc3cf6113b155a32043d654b7f807d4a01c
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
196
tst
MA25.prev.tst
[[3,1,2,-1],[-2,0,-2,1],[-1,-2,1,-1],[-2,-1,-1,1]] * [a,b,c,d] = 10*a^3+9*a^2*b-9*a*b^2-8*b^3+21*a^2*c+36*a*b*c+15*b^2*c+3*a*c^2+3*b*c^2-6*a^2*d-18*a*b*d-12*b^2*d+6*a*c*d+6*b*c*d-6*a*d^2-6*b*d^2
543b489048ae490c066abc47333620c5cdead1d1
e58ee115056e7db70e0a5c071ab5146400e8e539
/seguidor_referencia_continuo.sce
468e0ec65d04b93e1052fc71fa481f1465a56638
[ "MIT" ]
permissive
mofreitas/algoritmosSistemasControle
7236f5a4020f242a8db69e641c817ad99a8638ef
fb666ab6708554caa8259e1f505f35225d1046c8
refs/heads/master
2020-07-07T20:30:51.712572
2019-08-20T23:47:44
2019-08-20T23:47:44
203,469,282
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,154
sce
seguidor_referencia_continuo.sce
function[] = sr_c(a, b, c, polos) Aa = zeros(size(c, 'r')+size(a, 'r'), size(c,'c')+1); Aa(1, 2:$) = c; Aa(2:$, 2:$) = a; Ba = [0; b] printf("Matriz Aa -------------------------- \n"); disp(Aa); printf("\nMatriz Ba -------------------------- \n"); disp(Ba); U = zeros(length(Ba), length(Ba)); for i=1:length(Ba), U(:, i) = (Aa^(i-1))*Ba; end printf("\nMatrix U ------------------------ \n"); disp(U); if(rank(U) == length(Ba)) then printf("\nRank cheio \n"); else halt("\nNão tem Rank cheio \n"); end printf("\nPolinomio delta -------------------- \n"); delta = poly(polos, 'A'); disp(delta); qc = zeros(size(Aa, 'r'), size(Aa, 'c')); for i=0:size(Aa, 'r'), qc = qc + (Aa^i)*coeff(delta, i); end printf("\nqc(Aa) ------------------------- \n"); disp(qc); printf("\nU inversa ---------------------- \n"); disp(inv(U)); m = zeros(1, size(qc, 'c')); m($) = 1; ka = -m*inv(U)*qc; printf("\nKa ------------------ \n"); disp(ka); endfunction
3fa9542cd3d77d05442f149458b8aa0654ce1f91
e657bbadea88191ece0e48eb447173a4c5f816f6
/tasks/cw4/seriesSequence(12_04_2017).sci
6b61b979ef18d331920feea6623269fcf1f02a05
[]
no_license
vainia/Learning-SCILAB
c37d6071907ea4fad811071a3164454a927602d8
d77877b1316b8b3546cb32cb9e29e7ad70d25280
refs/heads/master
2020-03-10T09:51:08.444686
2018-04-12T23:13:06
2018-04-12T23:13:06
129,320,183
0
0
null
null
null
null
UTF-8
Scilab
false
false
110
sci
seriesSequence(12_04_2017).sci
s=0; for k=1:100000 do s=s+1/k^2; end disp(s) s1=0; for k=100000:(-1):1 do s1=s1+1/k^2; end disp(s1)
cc89843cc2e969a38698b7532f1ee7305960e34e
449d555969bfd7befe906877abab098c6e63a0e8
/1133/CH5/EX5.24/Example5_24.sce
1f2f78a60c496fca593d390e796dc7f909fb111e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
318
sce
Example5_24.sce
//Example 5.24 clc disp("In this example, we use IC 74LS138, 3 : 8 decoder to implement multiple output function. The outputs of 74LS138 are active low, therefore, SOP function (function F1) can be implemented using NAND gate and POS function (function F2) can be implemented using AND gate, as shown in fig.5.50")
fdb46b326464cba6a9f4d2d435858e8a8c3407f8
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH20/EX20.11/20_11.sce
20163a3ba5012e2ed10c2e50ca3ee62d98c98d31
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
926
sce
20_11.sce
//Problem 20.11: A 4500 V/225 V, 50 Hz single-phase transformer is to have an approximate e.m.f. per turn of 15 V and operate with a maximum flux of 1.4 T. Calculate (a) the number of primary and secondary turns and (b) the cross-sectional area of the core. //initializing the variables: emfpt = 15; // in Volts V1 = 4500; // in Volts V2 = 225; // in Volts Bm = 1.4; // in Tesla f = 50; // in Hz //calculation: //E.m.f. per turn, V1/N1 = V2/N2 = emfpt //primary turns, N1 = V1/emfpt //secondary turns, N2 = V2/emfpt //e.m.f. E1 = 4.44*f*Phim*N1 //maximum flux density, Phim = V1/(4.44*f*N1) //Phim = Bm*A, where Bm = maximum core flux density and A = cross-sectional area of the core //cross-sectional area A = Phim/Bm printf("\n\n Result \n\n") printf("\n (a)no. of primary and secondary turns are %.0f turns, and %.0f turns respectively", N1, N2) printf("\n (b)cross-sectional area is %.2E m2", A)
1ad48ba056a113c39db89bfee8fff26dc918d27e
449d555969bfd7befe906877abab098c6e63a0e8
/3827/CH3/EX3.2/Ex3_2.sce
9d533fc166969b88a36dff6f74a9bcafef51a4a7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
422
sce
Ex3_2.sce
//EX3_2:Convert to POS //AC + A'BD' A'BE + A'C'DE //clears the screen clc //clears already existing variables clear disp('AC + A''BD'' + A''BE'' + A''C''DE') disp('= AC + A''(BD'' + BE + C''DE)') disp('= (A + BD'' + BE + C''DE)(A'' + C)') disp('= [A + C''DE + B(D'' + E))](A'' + C)') disp('(A + B + C''DE)(A + C''DE + D'' + E)(A'' + C)') disp('(A + B + C'')(A + B + D)(A + B + E)(A + D'' + E)(A'' + C)')
32d6864aada354152b0a6f5d81ab59ae449be183
717ddeb7e700373742c617a95e25a2376565112c
/40/CH8/EX8.5a/Exa_8_5a.sce
63e5aa5a4f6a36c61b9324f841284b6767cf3479
[]
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
827
sce
Exa_8_5a.sce
//properties of DFT //a1)product xn=[1 2 1 0]; XDFT=dft(xn,-1) hn=xn.*xn HDFT=dft(hn,-1) HDFT1=1/4*(convol(XDFT,XDFT)) HDFT1=[HDFT1,zeros(8:12)]; HDFT2=[HDFT1(1:4);HDFT1(5:8);HDFT1(9:12)]; HDFT3=[0 0 0 0]; for i=1:4 for j=1:3 HDFT3(i)=HDFT3(i)+HDFT2(j,i); end end disp(HDFT3,'DFT of x[n]^2 is'); //a2)periodic convolution vn=convol(xn,xn); vn=[vn,zeros(8:12)]; vn=[vn(1:4);vn(5:8);vn(9:12)]; vn1=[0 0 0 0]; for i=1:4 for j=1:3 vn1(i)=vn1(i)+vn(j,i); end end VDFT=dft(vn1,-1); VDFT1=XDFT.*XDFT; disp(VDFT1,'DFT of x[n]*x[n] is'); //a3)signal energy(parcewell's theorem) xn2=xn^2; E=0; for i=1:length(xn2) E=E+abs(xn2(i)); end XDFT2=XDFT^2 E1=0; for i=1:length(XDFT2) E1=E1+abs(XDFT2(i)); end E,(1/4)*E1; disp(1/4*E1,'The energy of the signal is');
9b2f523d9dcf330af05018ca0f0de9b0b70d7b86
449d555969bfd7befe906877abab098c6e63a0e8
/851/CH7/EX7.06/Table7_06.sce
be81e3cfb15537a5923c4632985de6bb30051f16
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Table7_06.sce
//clear// //Caption:Bandwidth efficiency of M-ary PSK signals //Table7.6: Bandwidth Efficiency of M-ary PSK signals clear; clc; close; M = [2,4,8,16,32,64];//M-ary Ruo = log2(M)./2; //Bandwidth efficiency in bits/s/Hz disp('Table 7.7 Bandwidth Efficiency of M-ary PSK signals') disp('______________________________________________________') disp(M,'M') disp('______________________________________________________') disp(Ruo,'r in bits/s/Hz') disp('______________________________________________________')
3649884568d0fe1c0138791aa171b3d654905145
449d555969bfd7befe906877abab098c6e63a0e8
/2288/CH3/EX3.21.19/ex3_21_19.sce
97fb4b9b8c9bd57c7c388a7fc1d2e2c2d5e65033
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
147
sce
ex3_21_19.sce
// Exa 3.21.19 clc; clear; close; // Given data t_d = 3;// total depletion in µm D = t_d/9;// in µm disp(D,"Depletion width in µm is");
fda56714e5b0fc6e8d82059e086d4c6a7c147950
9d11e49bc2143a6b680ab8f59b245bb2b4e5f487
/practicas-programacion/scilab/u6-scinotes/u6-notes.sce
083a1a9085a59bee7364530e5c0515646c8ac3d4
[]
no_license
AguilarLagunasArturo/school-holder
61a8be432b0979f7e3332c0ef058421ff34200ee
373cb31bb8e29e2433fb6269ad45bbdac0f8262e
refs/heads/main
2023-08-13T18:21:45.177344
2021-10-07T05:17:32
2021-10-07T05:17:32
407,611,773
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,102
sce
u6-notes.sce
clc; clear all; // Ecuaciones de estado A = [0, 1, 0, 0; -100, -10, 100, 10; 0, 0, 0, 1; 100, 10, -200, -20] B = [0; 0; 0; 1/100] C = [1, 0, 0, 0] D = [0] // Crontrolabilidad Cc = [B, A * B, A^2 * B, A^3 * B] det(Cc) // Funcion de transferencia (integrador / no integrador | ess = 0) s = %s; As = size(A); H = C * inv(s.*eye(As(1), As(2)) - A) * B + D // Polos para condiciones del problema (interpolando) interpol_values = [ 0.2, 1.5, 4.6, 9.5, 16.3, 25.4, 37.2; 0.9, 0.8, 0.7, 0.6, 0.5, 0.4, 0.3 ]; po = 15; ts = 2; zeta = interpln(interpol_values, po); theta = acos(zeta) .* (180/%pi); zeta_omega = 4 ./ ts; y = zeta_omega * tan(theta .* (%pi/180)); d = 10 * zeta_omega; // Agregar integrador P = [-zeta_omega+y*%i;-zeta_omega-y*%i;-d;-d;-d] AA = [A, [zeros(As(1), 1)]; -C, 0] BB = [B; 0] K = ppol(AA, BB, P) Ks = size(K) Ki = -K(Ks(2)) K = K(1:Ks(2)-1) // Matrices modificadas Amod = [A-B*K, B*Ki;-C, 0] Bmod = [zeros(As(1),1);1] Cmod = [C, 0] Dmod = D Xo = [zeros(As(1), 1); 0] //Xp = Amod * Xo + Bmod //Y = Cmod * Xo + D // 16515.677 3400. 11421.615 5496.8646 -118745.84
fa1ae89fc21d220afec74e28fde1a3c487c97aab
6e2615cbb7b4cf3fcb878eda19ad6feef2630da0
/projects/02/Mul.tst
2ba345a615faaa7bf4411db889ccb05c20d60832
[]
no_license
shahamran/nand2tetris
77259aae184fc7930a46670e6654f4748b35d505
91e3e3c6734c30456965a8a7c030a8d39a9adb85
refs/heads/master
2020-12-13T23:49:46.283340
2016-08-09T10:58:41
2016-08-09T10:58:41
53,402,249
2
1
null
null
null
null
UTF-8
Scilab
false
false
458
tst
Mul.tst
load Mul.hdl, output-file Mul.out, compare-to Mul.cmp, output-list a%D1.16.1 b%D1.16.1 out%D1.16.1; set a %D0, set b %D1, eval, output; set a %D1, set b %D0, eval, output; set a %D13, set b %D56, eval, output; set a %D-1, set b %D0, eval, output; set a %D0, set b %D-1, eval, output; set a %D-10, set b %D6, eval, output; set a %D15, set b %D-3, eval, output; set a %D-17, set b %D-25, eval, output;
b03c7f9ee9e91c4892988ff0c8131e3e4697b1eb
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH24/EX24.21/Ex24_21.sce
93353fa41a906291faf908984f4cfb9161575d0c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
137
sce
Ex24_21.sce
clear //Given n1=2 n2=3 lb=6563 a=20 b=108.0 //Calculation l1=(lb*a)/b //Result printf("\n Wavelength of first member is %0.0f A",l1)
03f9eb18d8f30501985b1f21cf91cbd9db4dde67
449d555969bfd7befe906877abab098c6e63a0e8
/1898/CH5/EX5.1/Ex5_1.sce
4dd42d741751ae144cad9bb6e13335f19c92b51c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex5_1.sce
clear all; clc; disp("Scilab Code Ex 5.1 : ") //Given: r = 50; //mm J = (%pi/2)*(r^4); //polar moment of inertia tou_max = 56; //MPa T = (tou_max*J)/(r*10^6); //toumax = Tc/J //Display: printf("\n\nThe resultant internal torque = %1.0f kNm',T); //-----------------------------------------------------------------END-------------------------------------------------------------------------------------------------
a0c2acf8c243e71d260b2529cbbea66886f74ecb
449d555969bfd7befe906877abab098c6e63a0e8
/1004/CH1/EX1.11/Ch01Ex11.sci
88cc3c5e49b594d7c908480a01e45f5986440241
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
629
sci
Ch01Ex11.sci
// Scilab Code Ex1.11 Variation of space and time: Pg: 23 (2008) L = 0.5; // Shortened length of the rod, m L0 = 1; // Actual length of the rod, m t0 = 1; // Actual time on the spaceship, s c = 3e+08; // Speed of light, m/s v = sqrt(1 - (L/L0)^2)*c; // Speed of the spaceship, m/s t = t0/sqrt(1 - (v/c)^2); // Dilated time for stationary observer, s printf("\nThe speed of light = %5.3e m/s", v); printf("\nThe time dilation corresponding to 1 s on the spaceship = %d s", round(t)); // Result // The speed of light = 2.598e+008 m/s // The time dilation corresponding to 1 s on the spaceship = 2 s
a083136064e2aefcae6e3d691cbf517b61001fa1
df924acfdd5b043da9336a2276726dbfb655735a
/test_suite/textpro.tst
be949536831322f4d18fd145a8a94e7dea209f6b
[]
no_license
noxdafox/clips
b8fb280223b5aae615e427bf1f31c03cb932b09d
a2c548b69394f0e2cf7c6d583810b6a29a662ae1
refs/heads/master
2023-09-01T18:52:07.614807
2021-12-14T20:10:21
2021-12-14T20:10:21
95,596,886
11
10
null
null
null
null
UTF-8
Scilab
false
false
317
tst
textpro.tst
(unwatch all) (clear) (dribble-on "Actual//textpro.out") (batch "textpro.bat") (dribble-off) (clear) (open "Results//textpro.rsl" textpro "w") (load "compline.clp") (printout textpro "textpro.bat differences are as follows:" crlf) (compare-files "Expected//textpro.out" "Actual//textpro.out" textpro) (close textpro)
ffc328657b5a3eb001a7087ab8aaeb5b250da628
717ddeb7e700373742c617a95e25a2376565112c
/3460/CH6/EX6.3/ex6_3.sce
ae58e04ecbe9433fc5a61aca4f5663c80428b4ac
[]
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
367
sce
ex6_3.sce
clc; clear all; C=21*1e-12;//given capacitance L=111.91*1e-9;//given inductance //part a for 10 foot section Z0=sqrt(L*10/(10*C));//characteristic impedence for 10 foot section disp(Z0,'characteristic impedence'); //part b for 500 foot section; Z1=sqrt(L*500/(500*C));//characteristic impedence for 500 foot section disp(Z1,'characteristic impedence');
5249e6724a7f6d50356d8fe3836161bc85ebafd5
affb43e91a6a0cac39356ff1c5f9f5154b70a4a2
/Application of Correaltion/Radar_norm_correaltion.sce
52ae173384f73647991df210c116892b63273f7f
[]
no_license
kathan-shah99/Digital-signal-processing
87fb0615a98a764c546681ffb18fea32d69caa6d
3d5ad3553152a2b57f98a3b1a26756ebca37d7bc
refs/heads/main
2023-04-07T06:53:06.263109
2021-04-07T03:57:52
2021-04-07T03:57:52
355,397,284
1
0
null
null
null
null
UTF-8
Scilab
false
false
2,844
sce
Radar_norm_correaltion.sce
//---Author :Kathan-shah----- //LAB-4 RADAR - APPLICAITON OF CORREALATION clc clear clf() x=[5 9 2 1 5 4 5]; //Triangle pulse transmitted by radar n=[-3 -2 -1 0 1 2 3]; // Index of Triangular Pulse D=10; nd=n+D; y=x; // Delayed Signal w=rand(1,length(x)); // Noise Generation nw=nd; //-------------------------If present------------------------------- // If object is present we receive the signal R(n) = x(n-D) + Noise R=1*y+w; // Original Signal+Noise nr=nw; // Index of received signal at RADAR R_P=xcorr(x,R); nmin=min(n)+min(nr); // Lowest index of y(n) nmax=max(n)+max(nr); // Highest index of y(n) n_r=nmin:nmax; //finding at which index correlation value is max -- n_r(delay_index) delay_index = find(R_P == max(R_P)) disp("delay index --> "+string(n_r(delay_index))) disp("correaltion @ delay index --> "+string(R_P(delay_index))) //-----------------------Normlized Correlation--------------------------------- //normalized correlation (max correlation value < 1) R_norm = 0 //R^2 --recieved signal square x_norm = 0 //X^2 --transmitting signal square R_re = 0 //correlation //finding R^2 & X^2 for i=1:length(R) R_norm = R_norm + R(i)**2 x_norm = x_norm + x(i)**2 R_re = R_re + R(i)*x(i) //manual correlation end R_Pnorm = sqrt(R_norm*x_norm) norm_corr = R_re / R_Pnorm //normlaized correlation value btw 0 to 1 disp("Present correlation --> " + string(100*norm_corr) + "%") subplot(311) plot2d3(n,x); replot([min(n)-1 1+max(n);0 max(x)+1]) title("Transmitting signal") xlabel("Time") ylabel("Amplitude") subplot(312) plot2d3(nr,R); replot([min(nr)-1 1+max(nr);0 max(R)+1]) title("Recived delay = " + string(D) + " signal") xlabel("delayed Time") ylabel("Amplitude") subplot(313) plot2d3(n,w); title("Noise recieved signal") xlabel("Time") ylabel("Amplitude") figure(1) subplot(211) plot2d3(n_r,R_P); title("recieved signal correation") xlabel("index") ylabel("Correlation Value") //-----------------------------Not Present----------------------- // If object is not present we receive the signal R(n) = Noise R1=w; // only Noise Signal nr=nw; R_A=xcorr(x,R1); nmin=min(n)+min(nr); // Lowest index of y(n) nmax=max(n)+max(nr); // Highest index of y(n) n_received=nmin:nmax; subplot(212) plot2d3(n_received,R_A); title("not recived correlation") xlabel("index") ylabel("correaltion Value") //------------------------------Normalized correaltion------------------------------- R_norm_A = 0 x_norm_A = 0 R_re_A = 0 for i=1:length(R) R_norm_A = R_norm_A + R1(i)**2 x_norm_A = x_norm_A + x(i)**2 R_re_A = R_re_A + R1(i)*x(i) end R_Pnorm_A = sqrt(R_norm_A*x_norm_A) norm_corr_A = R_re_A / R_Pnorm_A disp("Absent correlation --> " + string(100*norm_corr_A) + "%")
0e189ffebdf4f3c2f66c294fafd3f9d91117e6da
16152b808456a98fcb2d4303d5622c225109bcda
/substitution.sce
df78bde5c92f0e52310d8fc7a083ceb5c929e5ed
[]
no_license
conradolega/131
b1bcdc7097b661dcc0c503118ec199adffaabfc9
fa0773433f66f485bf96a8adee35f00a1207861a
refs/heads/master
2016-09-05T13:42:37.104466
2013-10-11T14:30:59
2013-10-11T14:30:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
339
sce
substitution.sce
function x = forwardsub(L, b) n = size(L, 'r') x = zeros(n, 1) x(1) = b(1) / L(1, 1) for i=2:n x(i) = (b(i) - L(i, 1:i-1) * x(1:i-1)) / L(i, i) end endfunction function x = backsub(U, b) n = size(U, 'r') x = zeros(n, 1) x(n) = b(n) / U(n, n) for i = n-1:-1:1 x(i) = (b(i) - (U(i, i+1:$) * x(i+1:$)))/U(i, i) end endfunction
ff82828481ef24a8e9a94107e9295416e3f361ac
0403ce9c09b0c8747f08848188b50d5895e34afe
/plsql/test_current_of.tst
5930d53cc00e302dca6a86c5ba4d665bea1ebaa6
[]
no_license
livefantom/mycode
f26873a1b67e4f4caf7fa5b183e4ac91e34ef79b
dbdebac31b9b3b96ac4a503a874ebe906078c772
refs/heads/master
2016-09-06T11:30:23.491983
2012-08-26T15:30:54
2012-08-26T15:30:54
435,793
0
0
null
null
null
null
GB18030
Scilab
false
false
1,190
tst
test_current_of.tst
PL/SQL Developer Test script 3.0 37 -- Created on 2011-4-11 by AFAN ,记录数:影响/网关/表 = 11000/65w/513w declare -- Local variables here cursor curOnlineRole(n_GW_ID number) is select r.role_id, r.login_id, r.rowid from UMS_ROLE r where r.gateway_id = n_GW_ID and r.login_id > 0 and r.role_state = 1; cursor curOnlineRole2(n_GW_ID number) is select r.role_id, r.login_id from UMS_ROLE r where r.gateway_id = n_GW_ID and r.login_id > 0 and r.role_state = 1 for update; begin -- Test statements here if (:proc = 1) then dbms_output.put_line('1'); for rowRole in curOnlineRole(601012) loop update UMS_ROLE set login_id = 0 where rowid = rowRole.rowid; --update UMS_ROLE set login_id = 0 where role_id = rowRole.role_id; 这样写就变成了不可完成的任务 end loop; else dbms_output.put_line('2'); for rowRole in curOnlineRole2(601012) loop update UMS_ROLE set login_id = 0 where current of curOnlineRole2; end loop; end if; commit; end; -- 消耗时间(s) -- 1.533, 1.406, 1.422, 1.422 -- 2.812, 2.859, 2.86, 2.828 1 proc 1 1 3 1 rowRole.role_id
92b29eb4e675622d337c8efe5ec0eb92bc94f194
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH44/EX44.1/Example44_1.sce
bc2cdc30b8b7b424edbd7e2aba435bbdc2d11eb5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
421
sce
Example44_1.sce
//Given that M_U = 235.0439 //in Atomic mass unit M_Ce = 139.9054 //in Atomic mass unit M_Zr = 93.9063 //in Atomic mass unit M_n = 1.00867 //in Atomic mass unit uCsqure = 931.5 //in Mev //Sample Problem 44-1 txt = mopen('Example44_1_result.txt','wt') mfprintf(txt, '**Sample Problem 44-1**\n') Q = -((M_Ce + M_Zr + M_n) - M_U) * uCsqure mfprintf(txt, 'The disintegration energy is %dMev', Q) mclose(txt)
b95df219a49421ae9f4ecee222330acff4b90836
449d555969bfd7befe906877abab098c6e63a0e8
/2642/CH5/EX5.1/Ex5_1.sce
cf855405bf84c7c6e9822adb153367037d65502e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
528
sce
Ex5_1.sce
// FUNDAMENTALS OF ELECTICAL MACHINES // M.A.SALAM // NAROSA PUBLISHING HOUSE // SECOND EDITION // Chapter 5 : REVIEW OF ELECRTIC CIRCUITS // Example : 5.1 clc;clear; // clears the console and command history // Given data l = 10 // conductor length in m B = 0.56 // magnetic flux density in T I = 2 // current through conductor in A // caclulations F = B*I*l // magnitude of force in N // display the result disp("Example 5.1 solution"); printf(" \n Magnitude of force \n F = %.1f N ", F);
7dd97f9877e1f16246d6e6ba1a6e35c45bd93c67
449d555969bfd7befe906877abab098c6e63a0e8
/2183/CH7/EX7.9/Ex_7_9.sce
4919f97959b7b0f7d2fbf4625a70f82a04b45bf1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
328
sce
Ex_7_9.sce
//Example 7.9 // NEP and specific detectivity clc; clear; close; //given data : h=6.63*10^-34; c=3*10^8; Id=9*10^-9;// in A e=1.6*10^-19; eta=60/100; lamda=1.3*10^-6;// in m A=100*50*10^-12;// in m^2 NEP=(h*c*sqrt(2*Id*e))/(eta*e*lamda); disp(NEP,"NEP,(W) = ") D=sqrt(A)/NEP; disp(D,"Specific detectivity,(MHz^(-1/2) W^-1) = ")
35c659246e4b0651455d9feee02d3dc871e7523c
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/TRA3.prev.tst
71e4fd12813f5b5639706e39a557ced188cc4518
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
933
tst
TRA3.prev.tst
A007318 Border 14 0,0,0,0,0,0,0,0,0,0,0,0,0,0 A007318 Constant 0 A007318 Pascal 1 1 A007318 LeftSide 16 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 A007318 RightSide 16 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 A029653 Border 14 0,0,0,0,0,0,0,0,0,0,0,0,0,0 A029653 Constant 0 A029653 Pascal 2 1,2 A029653 LeftSide 16 1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 A029653 RightSide 16 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 A130595 Border 0 A130595 Constant 0 A130595 Pascal 0 A130595 LeftSide 16 1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1 A130595 RightSide 16 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 A135278 Border 14 0,0,0,0,0,0,0,0,0,0,0,0,0,0 A135278 Constant 0 A135278 Pascal 0 A135278 LeftSide 16 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 A135278 RightSide 16 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 A271703 Border 0 A271703 Constant 0 A271703 Pascal 0 A271703 LeftSide 16 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 A271703 RightSide 16 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
45d72df6eb0262d694d554205159301b92dd6dff
449d555969bfd7befe906877abab098c6e63a0e8
/23/CH11/EX11.4/Example_11_4.sce
0e02066a3bec9f4faafe333b579e179d94d72cda
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
807
sce
Example_11_4.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 //Example 11.4 //Caption : Program To Find the Expression For Enthalpies //H=400x1 + 600x2 + x1x2(40x1 + 20x2) Given //Substituting x2=1-x1 H=poly([600 -180 0 -20],'x1','c') //(A) //K=dH/dx1 K=poly([-180 0 -60],'x1','c') //Using Eqn 11.15 H1=H+x2*K //substituting x2=1-x1 H1=poly([420 0 -60 40],'x1','c') //(B) //Similarly for H2 H2=poly([600 0 0 40],'x1','c') //(C) //Now to calculate H1_inf and H2_inf //x1=0 in (B) H1_inf=420;//[J/mol] //x2=0 in (C) i.e. x1=1 H2_inf=640;//[J/mol] disp(H1,'H1 = '); disp(H2,'H2 = '); disp('J/mol',H1_inf,'H1_inf = ') disp('J/mol',H2_inf,'H2_inf = ') //End
78c9cb4e6c0fbeb6dc586a0a0469cf768054b224
449d555969bfd7befe906877abab098c6e63a0e8
/623/CH21/EX4.4.1/U4_C4_1.sce
143c4e89ee42a0d736a5ce3016669a20419d0843
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
740
sce
U4_C4_1.sce
//variable initialization e=1.6*10^-19; //charge of electron (Coulomb) B=0.5 //magnetic field (Tesla) lembda=6438*10^-10; //wavelength of the line (m) m=9.1*10^-31; //mass of electron (kg) c=3*10^8; //speed of light (m/s) //calculation dlembda=(e*B*lembda^2*10^10)/(4*%pi*m*c); //normal Zeeman splitting (Å) printf("\nZeeman shift = %.3f Å",dlembda);
56d9c23a530cf9f91018cbaa6bce33f118cd7d1e
449d555969bfd7befe906877abab098c6e63a0e8
/3446/CH9/EX9.4/Ex9_4.sce
9af13f282e85c47fa0b7224467adbf5104de9d9f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex9_4.sce
// Exa 9.4 // To calculate //(a) the frequency shift between binary 1 and binary 0, //(b) the transmitted frequencies if the carrier frequency is 900 MHz, and //(c) the bandwidth efficiency in bps/Hz. clc; clear all; CHBW=200; //Channel BW in KHz R=270.83; //Data rate in kbps Fc=900; //carrier frequency in MHz //solution FreqShift=0.5*R; //Transmitted Frequencies Fh=Fc*1000+0.25*R;//Max Fl=Fc*1000-0.25*R;//Min BWEff=R/CHBW; printf('The frequency shift between binary 1 and binary 0 is %.3f kHz\n ',FreqShift); printf('Maximum and Minimum value of transmitted frequencies are %.4f mHz and %.4f mHz respectively\n ',Fh/1000,Fl/1000); printf('Bandwidth efficiency is %.2f bps/Hz',BWEff);
3130588f89d65efb5210ccbd2d58029a9a03c360
449d555969bfd7befe906877abab098c6e63a0e8
/569/CH6/EX6.2/6_2.sci
95ae59884e8b45a5e9e28530b75c0f7ff7b35a88
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
142
sci
6_2.sci
// calculating the closed loop gain clc; Rf=10; R1=1; Avol=200000; A=-(Rf/R1)*(1/[1+(1/Avol)*((R1+Rf)/R1)]); disp(A,'closed loop gain=')
d2ab4663f826584e9e48378aa3af8783f472b9f9
449d555969bfd7befe906877abab098c6e63a0e8
/821/CH8/EX8.4/8_4.sce
5206bf7a48c8c71e0f00821563286a9810d4e0b9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
784
sce
8_4.sce
Vinfinite=58.3;//volume of nitrogen evolved at infinite time// V0=19.3;//volume of nitrogen evolved at initial time// printf('Let V0,Vt,Vinfinite be the volumes of N2 evolved at the beginning,at time t and at infinite time(no more collection of N2 is observed)respectively,'); printf('\n(Vinfinite-V0)is a measure of the total amount of material that can decompose,\ni.e the initial concentration a.\n(Vinfinite-Vt) is a measure of the amount of material that remains unreacted at time t,i.e (a-x),\nbecause this volume corresponds to the amount of material that can still decompose between time t and infinite time.'); printf('\nk=(2.303/t)*(log10((Vinfinte-V0)/(Vinfinite-Vt))).'); printf('\nThe average value of k can be found to be 6.54*10^-2per min or 1.09*10^-3per sec');
1750983c07b32117594b95f8bf57d06544482675
449d555969bfd7befe906877abab098c6e63a0e8
/3809/CH4/EX4.6/EX4_6.sce
bef9d7cfc69cbe443b609a181198cb5af19946d3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
313
sce
EX4_6.sce
//Chapter 4, Example 4.6 clc //Initialisation' c1=10*10**-6 //capacitance in farad c2=25*10**-6 //capacitance in farad //Calculation c=(c1*c2)/(c1+c2) //equivalent parallel capacitance in farad //Results printf("Total Capacitance, C = %.2f uF",c*10**6)
153e9228b55d7704c901700177946d49bf6b2b4f
449d555969bfd7befe906877abab098c6e63a0e8
/1472/CH25/EX25.3/25_3.sce
1ba6e408a1447e4da057bdbef1ed5ee52d65d6fa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
724
sce
25_3.sce
clc //initialization of varaibles disp("From the psychrometric chart,") ha=12.9 //B/lb g1=0.0032 //lb water/ lb dry air g2=0.0078 //lb water/ lb dry air hl=13 //B/lb hd=25.33 //B/lb p=14.7 //psia phi=0.6 cp=0.24 t2=70 //F //calculations wl=g2-g1 Q=hd-ha-wl*hl pg=0.1217 //psia pa=p-pg G1=0.622*pg*phi/pa G2=0.00788 wl2=G2-G1 t1=40 //F hw1=1061.8 + 0.44*t1 hw2=1092.6 //B/lb Q2=cp*(t2-t1) + G2*hw2 -G1*hw1 - wl2*hl //results printf("Method 1") printf("\n Water to be supplied = %.4f lb/lb of dry air",wl) printf("\n heat supplied = %.1f B/lb of dry air",Q) printf("\n Method 2") printf("\n Water to be supplied = %.5f lb/lb of dry air",wl2) printf("\n heat supplied = %.1f B/lb of dry air",Q2)
9ab43105f5609592eac51e7f6e285c12c7ec96dc
449d555969bfd7befe906877abab098c6e63a0e8
/3720/CH5/EX5.8/Ex5_8.sce
0aa769523cb46f4b8a2c247d32043c05b2dfb0a9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
231
sce
Ex5_8.sce
//Example 5_8 clc;clear;funcprot(0); // Given values h_1=0.03;// m h_2=0.07;// m h_3=0.12;// m g=9.81;//m/s^2 //Calculation V_1=sqrt(2*g*h_3);// m/s printf('The velocity at the center of the pipe,V_1=%0.2f m/s\n',V_1);
1dc61dba4a63f029eda29102cb93da72400e770c
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH25/EX25.12/Ex25_12.sce
9585c0e1c822ed3a7695226488eb119ac906cc9c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
282
sce
Ex25_12.sce
clear //Given t=5000 //Days t1=2000.0 a=0.693 //Calculation // dt=(a*t)/t1 N=log10(dt) l=a*N/(t1) //Result printf("\n (i) The fraction remaining after 5000 days is %0.3f ",N) printf("\n (ii) The activity of sample after 5000 days is %0.1f *10**8 Bq",l*10**5)
ce96311f7ad90e7fdef222aa40856b165bffc9f3
449d555969bfd7befe906877abab098c6e63a0e8
/2681/CH8/EX8.11/Ex8_11.sce
e9c44d8a94e5e9f95cb023850509da75af41099e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
372
sce
Ex8_11.sce
//half power radiation pattern and beamwidth between first null //given clc Da=12//metre f=10d+9//hertz v=3d+8//m/s lemda=v/f//metre ie=0.6//illumination efficiency gp=ie*(Da/lemda)^2//gain pattern gp_decibles=10*log10(gp)//changing to db gp_decibles=round(gp_decibles*100)/100///rounding off decimals disp(gp_decibles,'the power gain in decibles')//degree,db
313b9fa4bd2322bf7cd666427fccaa25ff032ae7
f7504f79f76645f7f3f70e05ac9b2e319779cdb5
/tests/PSP.tst
fa1cfab14c124452f81742791ed840e1059ea46e
[]
no_license
Zeftax/Test-Me
4ec4acd7c82756dec666af1a59898f30a950ae1d
e5467ba459f12829663bb3493a43f97305627406
refs/heads/master
2020-07-12T11:14:34.339908
2019-10-21T14:47:23
2019-10-21T14:47:23
204,803,337
0
0
null
null
null
null
UTF-8
Scilab
false
false
178
tst
PSP.tst
0.0 H/Vodík He/Helium Li/Lithium Be/Beryllium B/Bor C/Uhlík N/Dusík O/Kyslík F/Fluor Ne/Neon Na/Sodík Mg/Hořčík Al/Hliník Si/Křemík P/Fosfor S/Síra Cl/Chlor Ar/Argon
3c9fbf936464d0888772e23d63aae2573568f24d
449d555969bfd7befe906877abab098c6e63a0e8
/3311/CH16/EX16.6/Ex16_6.sce
fce1638efbe4745c1f4b0108017504823b53a3e4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
907
sce
Ex16_6.sce
// chapter 16 // example 16.6 // Determine maximum duty cycle and flyback convertor turns ratio // page-1007 clear; clc; // given fs=60; // in kHz (switching frequency) Esp=180; // in V (spike voltage) Mains=230; // in V (mains supply) f=50; // in Hz (supply frequency) E0=12; // in V E_DS=1200; // in V (used in the book, voltage across MOSFET) // calculate Edc=Mains*sqrt(2); // calculation of peak mains voltage // since E_DS=(Edc/(1-alpha_max)+Esp, therefore we get alpha_max=1-(Edc/(E_DS-Esp)); // calculation of maximum duty cycle // since E0=(alpha_max/(1-alpha_max))*(N2/N1)*Edc, therefore we get K=(Edc/E0)*(alpha_max/(1-alpha_max)); // calculation of flyback convertor turns ratio printf("\nThe maximum duty cycle is \t\t alpha_max=%.2f",alpha_max); printf("\nThe flyback convertor turns ratio is \t N2/N1=%.1f",K); // Note : the answer vary slightly due to precise calculations
d18bc47ff5df1165aa4391d5247b3e5e0b8542f3
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/midcross/midcross7.sce
a05e4de17277996ddcb07b94849fc0c1096e8a1d
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
265
sce
midcross7.sce
//check o/p for two input arguements - x and sampling frequency Fs x=[1.2,5,10,-20, 12]; t=[0.0,2.5E-7,5.0E-7,7.5E-7,1.0E-6]; [mc,Lev60] = midcross(x,t,'MidPercentReferenceLevel',60) disp(mc) disp(Lev60) //output // // 0.0000006 0.0000009 // - 7.168
3e4a288f50b2e7a05a30d8620cf8e9118025fb14
449d555969bfd7befe906877abab098c6e63a0e8
/764/CH10/EX10.11.b/solution10_11.sce
ab354e252240138f7e8655174fdc18316d24fc12
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,149
sce
solution10_11.sce
//Obtain path of solution file path = get_absolute_file_path('solution10_11.sce') //Obtain path of data file datapath = path + filesep() + 'data10_11.sci' //Obtain path of function file funcpath = path + filesep() + 'functions10_11.sci' //Clear all clc //Execute the data file exec(datapath) exec(funcpath,[-1]) //Calculate the torque transmitted by each pair Mt (N-m) Mt = T/p //Calculate the force required to transmit the torque P1 (N) P1 = (4 * Mt * 1000)/(mu * (D + d)) //Calculate the force exerted by each spring P (N) P = P1/ns //Calculate the Wahl Factor K K = (((4 * C) - 1)/((4 * C) - 4)) + (0.615/C) //Assume the wire diameter to be 1mm d d = 1 //Calculate the shear stress in the spring tau (N/mm2) tau = (K * 8 * P * C)/(%pi * (d^2)) trials = 0 //Load .csv file containing data of table10.1 on page 402 warning("off") numeric = read_csv(path + filesep() + 'table10_1.csv') while (gr~=1 & gr~=2 & gr~=3 & gr~=4) printf("\n") gr = input("Enter appropriate steel grade: ") end if (gr == 1 ) col = 2 elseif (gr == 2) col = 3 elseif (gr == 3) col = 4 elseif (gr == 4) col = 5 end row = 4 //Calculate the wire diameter dNew (mm) for i = 1:1:%inf trials = trials + 1 dNew = evstr(numeric(row, 1)) tauNew = tau/(dNew^2) Sut = evstr(numeric(row, col)) taud = (r/100)*Sut if (taud > tauNew) break() end row = row + 1 end //Calculate the mean coil diameter DNew (mm) DNew = C * dNew //Calculate the total number of coils Nt = active_coils(endtype, N) //Calculate the solid length of the spring s (mm) s = Nt * dNew //Calculate the maximum deflection of the spring deltamax (mm) deltamax = (8 * P * (DNew^3) * N)/(G * (dNew^4)) //Calculate the free length of the spring len (mm) len = ceil(s + ((Nt - 1)*g) + deltamax) //Print results printf("\nNumber of trials= %d\n",trials) printf("\nWire diameter(dNew) = %f mm\n",dNew) printf("\nMean coil diameter(DNew) = %f mm\n",DNew) printf("\nNumber of active coils(N) = %d\n",N) printf("\nTotal number of coils(Nt) = %d\n",Nt) printf("\nSolid length of the spring(s) = %f mm\n",s) printf("\nFree length of the spring(len) = %f mm\n",len)
659f3803d63630a7648902b7a9ff4e7c343de238
449d555969bfd7befe906877abab098c6e63a0e8
/548/CH5/EX5.09/5_09.sce
e2ed1cc69b4212c249b0eabbf41c7defdcdade16
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
262
sce
5_09.sce
pathname=get_absolute_file_path('5_09.sce') filename=pathname+filesep()+'5_09data.sci' exec(filename) Cl=Co/(sqrt(1-M^2));disp(Cl,"Cl=","Cl=Co/(sqrt(1-M^2))","Lift coefficient Cl :") printf("\Answer:\n") printf("\n\Lift coefficient at Mach 0.7: %f \n\n",Cl)
bc1a5577dd80c3d659ccd8ebee25146a66c413ba
449d555969bfd7befe906877abab098c6e63a0e8
/2123/CH3/EX3.6/Exa_3_6.sce
96cb9ee69120e8ba1a1ced1e75e6844f1916dc54
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
722
sce
Exa_3_6.sce
//Example No. 3.6 clc; clear; close; format('v',6); //Given Data : v=1.2;//belt conveyer speed in m/s TransRate=100;//rate of transportation of material in tons/hour l=200;//length of belt in meter MotorSpeed=1200;//rpm MoI=0.1;//Moment of Inertia in Kg-m^2 //Solution : //Part A TransRate=TransRate*1000/60/60;//rate of transportation of material in Kg/sec TransTime=l/v;//in sec omega=MotorSpeed*2*%pi/60;//rad/sec M=TransRate*TransTime;//Kg J=M*(v/omega)^2;//Kg-m^2 disp(J,"Load Inertia in Kg-m^2 : "); //Part B t=8;//sec a=v/t;//m/s^2 TorqueInertai=MoI*omega/t;//N-m F=M*a;//N Tload=F*v/omega;//N-m TotalTorque=Tload+TorqueInertai;//N-m disp(TotalTorque,"Total Torque in N-m : ");
60a56a1c669ca7f6cb8c6eabf14590062bde96c3
449d555969bfd7befe906877abab098c6e63a0e8
/2825/CH15/EX15.6/Ex15_6.sce
9f8be3af87d494728afc47f344e03c6f44d1ae9d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
516
sce
Ex15_6.sce
//Ex15_6 Pg-776 clc Pc=10000 //carrier power in watt m=0.9 //modulation factor disp("We have") disp("Total power = carrier power*(1+m^2/2)") Pt=Pc*(1+m^2/2) //total power printf(" = %.0f kW \n\n",Pt*1e-3) printf("This will be the maximum power handeled by the transmitter.\n Now,increased unmodulated carrier power can be obtained by \n\n") m=40/100 //modulation in terms of percentage Pt=14000 //total power Pc=Pt/(1+m^2/2) //neew carrier power printf(" Pc = %.2f kW",Pc*1e-3)
4ac0bcc9ecf6d4abf6d8a864266ec0e35326435c
449d555969bfd7befe906877abab098c6e63a0e8
/506/CH16/EX16.4.a/Example16_4a.sce
da7a02d99d02c198e8047607b3c6e9bc4820da95
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,245
sce
Example16_4a.sce
clear; clc; //Caption:Logic Level Output of an ECL gate //Given Data Vbb = 1.15;//in V Vee=5.20;//in V Vbe5=0.7;//in V R=1.18;//in K r=300;//in ohm Vbecutin=0.5;//in V //If all inputs are low then we assume that Q1,Q2 and Q3 are cutoff and Q4 is conducting Ve=-Vbb-Vbe5;//Voltage at Common Emitter in V //Current I in 1.18K Resistor I = (Ve+Vee)/R;//in mA I1=I; disp('mA',I,'Current in 300 ohm resistance I='); //Output Voltage at Y vy = -(r*I/1000)-Vbe5;//I is in mA so 1000 is multiplied Vbe = vy-Ve; disp('V',Vbe,'Vbe = '); if(Vbe<Vbecutin) disp('Input transistors are non conducting as was assumed'); disp('If atleast one input is high then it is assumed that curent in 1.18K resistance is switched to R and Q4 is cutoff'); disp('Drop in 300 ohm resistance is zero.Since the base aand collector are tied together Q5 now behaves as a diode'); disp('Across Q5'); v=0.7;//voltage across Q5 in V rQ5 = 1.5;//in K i = (Vee-v)/rQ5; v = 0.75;//from the graph in V disp('mA',i,'i='); disp('V',v,'v='); Ve = -v-Vbe5; Vbe4=-Vbb-Ve; disp('V',Vbe4,'Vbe4='); end disp('The total output swing between two logic gates'); vo = -vy-v; disp('V',vo,'vo='); //end
9780c674c40bc6ae168b16cc8beb1dcbedabe4b1
449d555969bfd7befe906877abab098c6e63a0e8
/3802/CH8/EX8.14/Ex8_14.sce
60fa3201357f2a2bf11441822b9a01ae8f6daf6c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
739
sce
Ex8_14.sce
//Book Name:Fundamentals of Electrical Engineering //Author:Rajendra Prasad //Publisher: PHI Learning Private Limited //Edition:Third ,2014 //Ex8_14.sce. clc; clear; N=600; V=500; Il=32; Ra=0.4; Rf=250; printf("\n (a)") P=(V*Il)/1e3; N1=450; Ia=Il-(V/Rf); k_phi=(V-(Ia*Ra))/N; R=(V-(k_phi*N1))/Ia-Ra; printf("\n Input power at 600 r.p.m=%d kW \n",P) printf("\n Armature current Ia=%d A \n",Ia) printf("\n R=%1.2f ohm \n",R) printf("\n (b)") //To increase the speed the field control is used. If1_by_If=0.856; If=Il-Ia; If1=If1_by_If*If; Rf1=V/If1; R=Rf1-Rf; Ia1=Ia/If1_by_If; Il=Ia1+If1; Pi=(V*Il)/1e3; printf("\n New armature current Ia=%d A \n",Ia1) printf("\n New Input power=%2.1f kW",Pi)
6ac780e201fdb0aadf8798988acbc046cd4085db
84ea66af72ab1c482a1a03fd2d8bdc74e9ad1668
/Tutorial03-Curve_fitting/Scilab_code/errorfunweight.sci
9326d915bd917bf51354445d1705317a777b7501
[]
no_license
FOSSEE/scilab-tutorials
c4a9464a5b163074566234e42659f99e2012ecc0
301609f6ef1653dee4fa2ed74bca3e6f7abc1308
refs/heads/master
2020-03-26T23:48:04.178016
2018-10-08T00:44:39
2018-10-08T00:44:39
145,567,949
0
0
null
null
null
null
UTF-8
Scilab
false
false
216
sci
errorfunweight.sci
//A function to compute error between computed data and measured data function err = errorfunweight(x, time, measured_data, weight_matrix) err = weight_matrix.*(fit_function(time, x) - measured_data ) endfunction
a157cefbcc8b77902058b51f6bff865df36db158
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH2/EX2.15/Ch02Ex15.sce
2b62b3419144058b3b06690c4741294a8be0a538
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
569
sce
Ch02Ex15.sce
// Scilab Code Ex2.15:: Page-2.14 (2009) clc; clear; d1 = 5e-01; // First distance between images of the slit, cm d2 = 2.25e-01; // Second distance between images of the slit, cm lambda = 5896e-008; // Wavelength of the light used, cm D = 120; // Distance between screen and the slits, cm d = sqrt(d1*d2); // Geometric mean of distance between the two slits, cm b = lambda*D/d; // Distance between interference bands, cm printf("\nThe distance between interference bands = %5.3e cm", b); // Result // The distance between interference bands = 2.109e-02 cm
66d755dbe0ba38568eaa6b860931fc01705e601d
449d555969bfd7befe906877abab098c6e63a0e8
/2309/CH4/EX4.13/Ex4_13.sce
ed7fdd777edf29e06e8ae26faf92115bee58ac5a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
659
sce
Ex4_13.sce
// Chapter 4 Example 13 //============================================================================== clc; clear; // input data l = 0.1*10^-9; // length of one dimensional box h = 6.625*10^-34 // plancks constant in Jsec m = 9.11*10^-31 // mass of electron in Kg n = 1; // for ground state e = 1.6*10^-19 // charge of electron in columbs // Calculations E = (h^2 * n^2)/(8*m*l^2 *e ) // Energy of electron in eV // Output mprintf('Energy of an electron = %3.3f eV',E); //==============================================================================
dfea018d417f657da234b0d31db196c1d46b0f6d
449d555969bfd7befe906877abab098c6e63a0e8
/2198/CH1/EX1.11.10/Ex1_11_10.sce
6cc00a179550f3991d03e472ecc26d4eef91fc44
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
273
sce
Ex1_11_10.sce
//Ex 1.11.10 clc;clear;close; format('v',9); //Given : ni=2.5*10^13;//per cm^3 mu_p=1800;//cm^2/V-s mu_n=3800;//cm^2/V-s q=1.6*10^-19;//Coulomb sigma_i=ni*q*(mu_n+mu_p);//(ohm-cm)^-1 rho_i=1/sigma_i;//ohm-cm disp(round(rho_i),"Resistivity of Ge(ohm-cm) : ");
837c3a15b838b100af8cff48eb96bb31367ffe6d
449d555969bfd7befe906877abab098c6e63a0e8
/1538/CH18/EX18.3/Ex18_3.sce
b8084d620a088ca40fb1fc2c23a61e9b232e1ab9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
448
sce
Ex18_3.sce
//example-18.3 //page no- 537 //given //conductivity of material sigma=0.018 // per ohm m //no of electrons n=10^19 //electrons/m^3 //voltage V=0.16 //V //thickness of material t=0.29*10^-3 //m //mass and charge of electron m=9.1*10^-31 //kg e=1.602*10^-19 //C //electric feilf gradient kie=V/t //V/m //as we know that //sigma=n*e*vd/kie //so v vd=sigma*kie/n/e //m/s printf ("drift velocity of carriers is %f m/s",vd)
7ae32e826fc8892c0769872b37458653aa68d28b
0fe450b52908c4de1f70576ebfbce8d2b98ec427
/src/test_ods_fsed_2_g.tst
f8f16a12fa5bdb33c9c860c3143091f04e6b8050
[ "Zlib", "BSD-3-Clause", "MIT", "OML" ]
permissive
technologiespro/ciyam
41c75cce77fed8db16439b10698c6fd0db10d4d5
5a63b84251132b393221500edb0e285cc4f38a7d
refs/heads/master
2020-12-02T10:05:46.529201
2017-07-09T08:55:53
2017-07-09T08:55:53
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,147
tst
test_ods_fsed_2_g.tst
** File Info Version Id = 65536 Num Trans = 0 Num Writers = 0 Init Tranlog = 0 Total Entries = 5 Tranlog Offset = 0 Transaction Id = 37 Index Free List = 0 Total Size of Data = 29196 Data Transformation Id = 37 Index Transformation Id = 37 ** Entry Info for: all num: 0000000000000000 pos: 0000000000000000 len: 0000000000000100 txn: 0000000000000024 txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000001 pos: 00000000000041a4 len: 0000000000001a34 txn: 0000000000000021 txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000002 pos: 0000000000001b34 len: 0000000000000400 txn: 000000000000001c txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000003 pos: 0000000000005bd8 len: 0000000000001634 txn: 0000000000000023 txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000004 pos: 0000000000003568 len: 0000000000000c3c txn: 0000000000000008 txo: 0000000000000000 flags: lk=0 tx=0 ** Freelist Info No freelist entries.
34616ce32af149b4d7d88264aaf268568123880b
449d555969bfd7befe906877abab098c6e63a0e8
/1748/CH2/EX2.7/Exa2_7.sce
540e154445513f4a6a9f67123c9445647e85f8cd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
760
sce
Exa2_7.sce
//Exa 2.7 clc; clear; close; //Given data : N=1440;//in rpm f=50;//in Hz disp("For this speed of 1440 rpm the synchronous speed may be either 1500 rpm or 3000 rpm."); disp("If the synchronous speed is 3000 rpm then in generl case the speed will not be too slow. o the synchronous speed for this motor is 1500 rpm and and no. of poles corresponding to this speed is 4."); Ns=1500;//in rpm P=4;//no. of poles disp(P,"No. of poles : "); Slip=(Ns-N)*100/Ns;//in % disp(Slip,"Slip(in %) : "); speed1=Ns-N;//Speed of rotor flux with respect to rotor disp(speed1,"Speed of rotor flux with respect to rotor in rpm : "); speed2=(speed1)+N;//Speed of rotor flux with respect to stator disp(speed2,"Speed of rotor flux with respect to stator in rpm :");
57afba9a0908eebae590b3fb47f29a6deffbb720
449d555969bfd7befe906877abab098c6e63a0e8
/2420/CH3/EX3.5/3_5.sce
d1513dedd086e8314d642ec2526bef1ecbe11eb3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
184
sce
3_5.sce
clc clear //Initialization of variables F=200 //lb area=1.65 //sq. in len=3.5 //in //calculations ord=area/len mep=ord*F //results printf("MEP of an engine = %.1f psi",mep)
3e58d647701736f1e3c227e351f6a1d1427a526c
3c47dba28e5d43bda9b77dca3b741855c25d4802
/microdaq/macros/mdaqBlockAdd.sci
9656e663c2ce03940183e63ecb23f0191e210f9e
[ "BSD-3-Clause" ]
permissive
microdaq/Scilab
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
refs/heads/master
2021-09-29T11:55:21.963637
2019-10-18T09:47:29
2019-10-18T09:47:29
35,049,912
6
3
BSD-3-Clause
2019-10-18T09:47:30
2015-05-04T17:48:48
Scilab
UTF-8
Scilab
false
false
15,582
sci
mdaqBlockAdd.sci
function mdaqBlockAdd(block_def) if type(block_def) <> 17 then disp("ERROR: Wrong type of input argument!"); if type(block_def) == 13 then disp("Input argument type is function - use ''block = mdaqBlock()'' instead of ''block = mdaqBlock''") else disp("Use mdaqBlock() function to create initialized block sctructure!") end return; end if size(block_def.in, 'r' ) > 1 then if size(block_def.in, 'c' ) > 1 then disp("ERROR: Wrong block ''in'' parameter - one dimentional array expected!"); return; end block_def.in = block_def.in'; end if size(block_def.out, 'r' ) > 1 then if size(block_def.out, 'c' ) > 1 then disp("ERROR: Wrong block ''out'' parameter - one dimentional array expected!") return; end block_def.out = block_def.out'; end if length(block_def.name) > 20 then disp("ERROR: Block name too long!"); return; end FORCE_SIM = %F; if haveacompiler() == %F & block_def.use_sim_script == %F then warning("Compiler not found."); warning("This block will use simulation script instead of C code during simulation mode."); FORCE_SIM = %T; end path = fileparts(get_function_path('mdaqBlockAdd')); module_path = part(path,1:length(path)-length("macros") - 1 ); SCRIPT_FILE_ROOT = path + 'user_blocks' + filesep(); C_FILE_ROOT = module_path+'src'+filesep()+'c'+ filesep()+'userlib'+filesep(); IMAGE_FILE_ROOT = module_path + filesep() + 'images' + filesep(); // =============================PREPARE INPUT===================================== params_size = max(size(block_def.param_name)); params_size_size = max(size(block_def.param_size)); params_def_val_size = max(size(block_def.param_def_val)); in_size = max(size(block_def.in)); out_size = max(size(block_def.out)); if block_def.in(1) < 1 then in_size = 0; end if block_def.out(1) < 1 then out_size = 0; end //If user did not enter enough information about size of parameters then //we set it to default 1. if params_size > params_size_size then sizes = ones(1:params_size)'; sizes(1:params_size_size) = block_def.param_size; block_def.param_size = sizes; end //If user did not enter enough information about default parameters value then //we set it to default 0. def_val = list(); for i=1:params_size def_val(i) = zeros(1:block_def.param_size(i))'; if i <= params_def_val_size then i_params_def_val_size = max(size(block_def.param_def_val(i))); def_val(i)(1:i_params_def_val_size) = block_def.param_def_val(i); end end block_def.param_def_val = def_val; // if block name changed without desc - change block name in desc if block_def.desc == "Set new_block parameters" then block_def.desc = strsubst(block_def.desc, "new_block", block_def.name); end // =============================GENERATE STRINGS===================================== // converted params params_converted = ''; // script file params_string1 = ''; params_string2 = ''; params_string3 = ''; params_string4 = ''; params_string5 = ''; //default values string params_string6 = ''; // C file in_ports_string = ''; out_ports_string = ''; params_c_string = ''; params_sci_string = ''; name_converted = convstr(block_def.name,'l'); name_converted = strsubst(name_converted, ' ', '_'); if strstr(name_converted, 'sim') <> "" then error("Cannot create block with '"*sim*'" word (known issue). Choose another block name."); end name_converted = 'mdaq_' + name_converted; for i = 1:params_size // Remove spaces and convert to lower case params_converted(i) = convstr(block_def.param_name(i),'l') params_converted(i) = strsubst(params_converted(i), ' ', '_') params_converted(i) = strsubst(params_converted(i), ';', '_') params_converted(i) = strsubst(params_converted(i), ':', '_') params_converted(i) = strsubst(params_converted(i), ',', '_') params_converted(i) = strsubst(params_converted(i), '.', '_') params_string1 = params_string1 + params_converted(i)+','; params_string2 = params_string2 + ''''+block_def.param_name(i)+':'';'; params_string3 = params_string3 + '''vec'','+ string(block_def.param_size(i)) + ','; params_string4 = params_string4 + 'sci2exp(' + params_converted(i) + ');'; params_string5 = params_string5 + params_converted(i)+';'; i_def_param_size = max(size(block_def.param_def_val(i))); i_param_def_string = ''; for j = 1:block_def.param_size(i) i_param_def_string = i_param_def_string + string(block_def.param_def_val(i)(j))+';'; end //default values string params_string6(i) = ' '+params_converted(i)+' = ['+i_param_def_string+'];'; end //delete last character ',' params_string3 = part(params_string3, 1:(length(params_string3)-1) ); in_string = ''; out_string = ''; if in_size > 0 then for i = 1:(in_size-1) in_string = in_string + string(block_def.in(i)) + ';'; end in_string = in_string + string(block_def.in(in_size)); end if out_size > 0 then for i = 1:(out_size-1) out_string = out_string + string(block_def.out(i)) + ';'; end out_string = out_string + string(block_def.out(out_size)); end block_v_size = 3; if max([out_size in_size]) > 2 then block_v_size = block_v_size + (max([out_size in_size]) - 2); end block_h_size = 4; if length(block_def.name) > 8 then block_h_size = block_h_size + ((length(block_def.name) - 8) * 0.2); end // =============================GENERATE SCRIPT===================================== // TODO define default params value // (block_def.name).sci script generator block_script = [ '// Generated with MicroDAQ toolbox ver: ' + mdaq_version() + ''; 'function [x,y,typ] = '+ name_converted + '(job,arg1,arg2)'; ' block_desc = [''' + block_def.desc + ''';'; ' '''';]'; ''; ' x=[];y=[];typ=[];'; ' select job'; ' case ''set'' then'; ' x=arg1;';]; if params_size > 0 then block_script = [block_script; ' model=arg1.model;'; ' graphics=arg1.graphics;'; ' exprs=graphics.exprs;'; ''; ' while %t do'; ' try'; ' getversion(''scilab'');'; ' [ok,'+params_string1+'exprs]=..' ' scicos_getvalue( block_desc,..'; ' ['+params_string2+'],..'; ' list('+params_string3+'), exprs)'; ' catch'; ' [ok,'+params_string1+'exprs]=..' ' getvalue(block_desc,..'; ' ['+params_string2+'],..'; ' list('+params_string3+'), exprs);'; ' end;'; ''; ' if ~ok then'; ' break'; ' end'; ''; ' if ok then'; ' [model,graphics,ok] = check_io(model,graphics, ['+in_string+'], ['+out_string+'], 1, []);'; ' graphics.exprs = exprs;'; ' model.rpar = ['+params_string5+'];'; ' model.ipar = [];'; ' model.dstate = [];'; ' x.graphics = graphics;'; ' x.model = model;'; ' break'; ' end'; ''; ' end']; end use_sim_string = [ ' if c_link('''+name_converted+''') then'; ' model.sim=list('''+name_converted+''',4);'; ' else'; ' model.sim=list('''+name_converted+'_sim'',5);'; ' warning(''Cannot link '''''+name_converted+''''' C function. Script '''''+name_converted+'_sim.sci'''' will be used instead.'');'; ' end'; ]; if block_def.use_sim_script == %T then use_sim_string = ' model.sim=list('''+name_converted+'_sim'',5);'; end block_script = [block_script; ' case ''define'' then'; params_string6; ' model=scicos_model();'; use_sim_string; ' model.in=['+in_string+'];'; ' model.in2=1;'; ' model.out=['+out_string+'];'; ' model.out2=1;'; ' model.outtyp=1;'; ' model.intyp=1;'; ' model.evtin=1;'; ' model.rpar=['+params_string5+'];'; ' model.ipar=[];'; ' model.dstate=[];'; ' model.blocktype=''d'';'; ' model.dep_ut=[%t %f];'; ' exprs=['+params_string4+'];'; ' gr_i=[''xstringb(orig(1),orig(2),['''''''' ; ],sz(1),sz(2),''''fill'''');''];'; ' x=standard_define([' + string(block_h_size) + ' '+string(block_v_size)+'],model,exprs,gr_i);'; ' x.graphics.in_implicit=[];'; ' x.graphics.exprs=exprs;'; ' x.graphics.style=[""blockWithLabel;verticalLabelPosition=center;displayedLabel=' + block_def.name + '""]'; ' end'; 'endfunction'; ]; // =============================GENERATE SIM SCRIPT===================================== index = 0; n_lines = 1; l = 1; for i = 1:n_lines:(params_size*n_lines) params_sci_string(i+1) = ' '+params_converted(l)+' = block.rpar('+string(index + 1)+');'; index = index + block_def.param_size(l); l = l + 1; end // (block_def.name)_sim.sci script generator init_string = ''; if FORCE_SIM == %T then init_string = [ ' mprintf('"\nWARNING: The '''''+name_converted+''''' block uses '''''+name_converted+'_sim.sci'''' script instead of C code during\n\t simulation mode. '');'; ' mprintf('"Make sure that the valid compiler is installed. More information is available at:\n'');'; ' mprintf('"\t https://help.scilab.org/doc/5.5.2/en_US/supported_compilers.html'');'; ]; end block_script_sim = [ '// Generated with MicroDAQ toolbox ver: ' + mdaq_version() + ''; 'function block='+name_converted+'_sim(block,flag)'; ''; ' global %microdaq'; ' if %microdaq.dsp_loaded == %F then'; params_sci_string; ' select flag'; ' case -5 // Error'; ' case 0 // Derivative State Update'; ' case 1 // Output Update'; ' case 2 // State Update'; ' case 3 // OutputEventTiming'; ' case 4 // Initialization'; init_string; ' case 5 // Ending'; ' case 6 // Re-Initialisation'; ' case 9 // ZeroCrossing'; ' else // Unknown flag'; ' break'; ' end'; 'end'; 'endfunction'; ]; // save scripts file_name = SCRIPT_FILE_ROOT+name_converted+'.sci'; save_string(file_name, block_script); file_name = SCRIPT_FILE_ROOT+name_converted+'_sim.sci'; save_string(file_name, block_script_sim); // =============================GENERATE C FILE ===================================== l = 1; n_lines = 3; index = 0; if in_size > 0 then in_ports_string(1) = ' /* Block input ports */'; for i = 2:n_lines:(in_size*n_lines+1) in_ports_string(i) = ' double *u'+string(l)+' = GetRealInPortPtrs(block,'+string(l)+');'; in_ports_string(i+1) = ' int u' +string(l)+ '_size = GetInPortRows(block,'+ string(l)+');'+... ' /* u' + string(l)+ '_size = '+string(block_def.in(l))+' */'; in_ports_string(i+2) = ''; l = l + 1; end end l = 1; if out_size > 0 then out_ports_string(1) = ' /* Block output ports */'; for i = 2:n_lines:(out_size*n_lines+1) out_ports_string(i) = ' double *y'+string(l)+' = GetRealOutPortPtrs(block,'+string(l)+');'; out_ports_string(i+1) = ' int y'+string(l)+'_size = GetOutPortRows(block,'+string(l)+');'+.... ' /* y' + string(l)+ '_size = '+string(block_def.out(l))+' */'; out_ports_string(i+2) = ''; l = l + 1; end end index = 0; n_lines = 2; l = 1; for i = 1:n_lines:(params_size*n_lines) if block_def.param_size(l) == 1 then params_c_string(i) = ' /* param size = 1 */'; params_c_string(i+1) = ' double '+params_converted(l)+' = params['+string(index)+'];'; else params_c_string(i) = ' int '+params_converted(l)+'_size = '+string(block_def.param_size(l))+';'; params_c_string(i+1) = ' double *'+params_converted(l)+' = &params['+string(index)+'];'; end index = index + block_def.param_size(l); l = l + 1; end block_c_file = [ '/* Generated with MicroDAQ toolbox ver: ' + mdaq_version() + ' */'; '#include '"scicos_block4.h'"'; ''; ''; 'extern double get_scicos_time( void );'; ''; '/* This function will executed once at the beginning of model execution */' 'static void init(scicos_block *block)'; '{'; ' /* Block parameters */'; ' double *params = GetRparPtrs(block);'; ''; params_c_string; ''; ' /* Add block init code here */'; '}'; ''; '/* This function will be executed on every model step */'; 'static void inout(scicos_block *block)'; '{'; ' /* Block parameters */'; ' double *params = GetRparPtrs(block);'; params_c_string; ''; in_ports_string; out_ports_string; ''; ' /* Add block code here (executed every model step) */'; ''; '}'; ''; '/* This function will be executed once at the end of model execution (only in Ext mode) */' 'static void end(scicos_block *block)'; '{'; ' /* Prameters */'; ' double *params = GetRparPtrs(block);'; ''; params_c_string; ''; ' /* Add block end code here */'; '}'; ''; 'void '+name_converted+'(scicos_block *block,int flag)'; '{'; ' if (flag == 1){ /* set output */'; ' inout(block);'; ' }'; ' else if (flag == 5){ /* termination */'; ' end(block);'; ' }'; ' else if (flag == 4){ /* initialisation */'; ' init(block);'; ' }'; '}'; ] file_name = C_FILE_ROOT+name_converted+'.c'; save_string(file_name, block_c_file); svg_path = IMAGE_FILE_ROOT + 'svg' + filesep(); gen_svg(svg_path, name_converted, block_def.name); // build macros and compile C code mdaqBlockBuild(%F, ~block_def.use_sim_script); mprintf("\tRestart Scilab to use new block\n"); endfunction function res = save_string(filename, content) [f,res] = mopen(filename,'w'); if res == 0 then mprintf(" ### Generating %s\n", filename); mputl(content,f) mclose(f) end endfunction function gen_svg(path,filename,label); doc = xmlRead(path+'mdaq_template.svg'); // Label handle node = doc.root.children(13).children(1); node.content = ""; xmlDump(node); xmlWrite(doc,path+filename+'.svg'); xmlDelete(doc); endfunction
75ffa696339c65af13f0137e0ca391576ba6122e
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH12/EX12.12/Ex12_12.sce
d07af2ad02037b28bf8d1eebca430ca2a2254379
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,202
sce
Ex12_12.sce
//Variable declaration: Ts = 106.0 //Surface temperature (°C) Tsat = 100.0 //Saturation temperature (°C) //Calculation: DTe = Ts-Tsat //Excess temperature (°C) //From table 12.5: C1 = 5.56 //Constant C1 n1 = 3.0 //Constant n1 C2 = 1040.0 //Constant C2 n2 = 1.0/3.0 //Constant n2 P = 1.0 //Absolute pressure (atm) Pa = 1.0 //Ambient absolute pressure (atm) //Calculation: h1 = C1*DTe**n1*(P/Pa)**0.4 //Boiling water heat transfer coefficient (W/m^2) Qs1 = h1*DTe //Surface flux (W/m^2) h2 = C2*DTe**n2*(P/Pa)**0.4 //Second Boiling water heat transfer coefficient (W/m^2) Qs2 = h2*DTe //Second Surface flux (W/m^2) //Result: if (Qs1/10**3 > 15.8 & Qs1/10**3 < 236) then printf("The boiling regime is : %.1f kW/m^2 .",Qs1/10**3) printf("The heat transfer coefficient is : %.0f W/m^2 .",h1) elseif (Qs1/10**3 < 15.8) then printf("The boiling regime is : %.2f kW/m^2 .",Qs2/10**3) printf("The heat transfer coefficient is : %.0f W/m^2.",h2) end
5344f64fb5f72b9c794b65f5d43690158b2f7939
449d555969bfd7befe906877abab098c6e63a0e8
/22/CH9/EX9.2/ch9ex2.sce
fbb10d839dcf6066b23836f073008b05827b9e71
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
359
sce
ch9ex2.sce
N_0=32; n=(0:N_0-1); x_n= [ones(1,5) zeros(1,23) ones(1,4)]; for r=0:31 X_r(r+1)=sum(x_n.*exp(-sqrt(-1)*r*2*3.14/N_0*n))/32; end subplot(2,1,1); r=n; plot2d3(r,real(X_r)); xlabel('r'); ylabel('X_r'); X_r=fft(x_n)/N_0; subplot(2,1,2); plot2d3(r,phasemag(X_r)); xlabel('r'); ylabel('phase of X_r'); disp(N_0,'period=') disp(2*%pi/N_0,'omega=')
c33a344a23724b9ed7feba872bd14bb93e185f8e
c03689c3547a8d6a40f80aaf7e53c4edf766eaab
/Fold Function.sce
b4334bca11176ff324dc0d68144da63ea2521984
[]
no_license
DoanTanLoc-2203/Digital-Signal-Processing-Scilab
2951686f7a8f015ff966f21c8324508a84cb2fba
eccea257fd10c8bdafba4d7af1ddf8cde9d4dc5c
refs/heads/main
2023-01-07T15:26:51.606190
2020-11-13T15:48:16
2020-11-13T15:48:16
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
741
sce
Fold Function.sce
function fo=fold(xn,n0)// hàm fold: y(n)=x(-n) // xử lí hàm fold for i=1:length(xn) yn(i)=xn(length(xn)-i+1); end y0=1+length(xn)-n0; // in kết quả yn và y0 disp("Giá trị của y(n) = x(-n) là: "); disp(yn); disp("Giá trị y0 là: "); disp(y0); // biểu diễn xn và yn trên đồ thị subplot(1,2,1); xlabel("x(n)"); plot(-n0,0); plot(length(xn)-n0+1,0); for i=1:length(xn) plot([-n0+i,-n0+i],[0,xn(i)]); end subplot(1,2,2); xlabel("y(n) = x(-n)"); plot(-y0,0); plot(length(yn)-y0+1,0); for i=1:length(yn) plot([-y0+i,-y0+i],[0,yn(i)]); end endfunction X=[1,2,3,4,5]; fold(X,2);
d94f4e2a04da51d89c562817d753da028f653ac4
449d555969bfd7befe906877abab098c6e63a0e8
/1514/CH4/EX4.1/4_1.sce
7fbf7f8ec9255b04e347be3c88a105738828a6e1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
463
sce
4_1.sce
//chapter 4 //example 4.1 //page 102 clear all; clc ; //given Rc=9;//collector resistance in kohm Ic1=0;//collector current Vcc=20;//supply voltage Vce1=Vcc;//point A(Vce,Ic)=(20,0) Vce2=0;//collector to emitter voltage V Ic2=Vcc/Rc;//mA //point F(Vce2,Ic2) plot([Vce1 Vce2],[Ic1 Ic2],'-.*'); xtitle('dc load line','Vce in V','Ic in mA'); a=gca(); a.data_bounds=[-1 -0.5;21 3] printf('dc load line passes through points A(20,0),F(0,2.2)')
badb9502f07e6adc35351e3c89b605b28b83ea0a
449d555969bfd7befe906877abab098c6e63a0e8
/55/CH7/EX7.17/7ex17.sci
0894c6e54e9cbf53a8c1be09490fd002a9677f35
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
470
sci
7ex17.sci
p=1/5; //probability of the man hitting a target q=1-1/5; //probability of the man not hitting the target n=100; //number of times the man fires e=n*p; disp(e,'expected number of times the man will hit the target') r=sqrt(n*p*q); disp(r,'Standard deviation') p=1/2; //probability of guessing the correct answer in a five question true-false exam n=5; //number of questions in the exam g=n*p; disp(g,'expected number of correct answers in the exam')
8151590ff2c9060b994ac29dea442098df640e6c
449d555969bfd7befe906877abab098c6e63a0e8
/1385/CH16/EX16.2/16_2.sce
32a6117c4186ff7a3ab11dbc8e65d300a8738f08
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
153
sce
16_2.sce
clc //initialisation of variables E= 0.3500 //v E1= -0.2788 //v //CALCULATIONS e= E+E1 //RESULTS printf (' Redox potential of sample= %.4f v',e)
b0b170d7e00d655ae6374ed1b1097aff998ccb05
449d555969bfd7befe906877abab098c6e63a0e8
/503/CH5/EX5.12/ch5_12.sci
0eaf9c428b8c9f83068889c8a79bf2649715af47
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
207
sci
ch5_12.sci
// to calculate resultant air gap flux/pole clc; F1=400; F2=850; a=123.6; Fr=sqrt(F1^2+F2^2+2*F1*F2*cosd(a)); P=1.408*10^-4; //permeance/pole phi_r=P*Fr; disp(phi_r,'air gap flux/pole(Wb)');
40f66261256c3fbf778078ce0a6b3c4fc81a2f0e
449d555969bfd7befe906877abab098c6e63a0e8
/3204/CH26/EX26.8/Ex26_8.sce
948f167308166eeadbb4423a83605773983f95d4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex26_8.sce
// 1 APPENDIX. Ex no 8. Page no 644 //initilization of variables A=[2,-6,-3] B=[4,3,-1] //Calculations AcrossB=[(A(2)*B(3)-B(2)*A(3)),A(3)*B(1)-A(1)*B(3),A(1)*B(2)-A(2)*B(1)] mag=sqrt(AcrossB(1)^2+AcrossB(2)^2+AcrossB(3)^2) n=AcrossB/mag magA=sqrt(A(1)^2+A(2)^2+A(3)^2) magB=sqrt(B(1)^2+B(2)^2+B(3)^2) theta=asind(mag/(magA*magB)) //Result clc printf("The cross prcoduct of the two vectors is %fi %fj+%fk\n",AcrossB(1),AcrossB(2),AcrossB(3)) // the answer for j part is wrong in textbook printf("The angle between the two is %f degrees",theta) // Only 1 value for theta has been solved. Ref textbook for the other value
9878bdb84d78e5db62d56175bb2f8dc30c3f7fa2
449d555969bfd7befe906877abab098c6e63a0e8
/3176/CH3/EX3.17/Ex3_17.sce
ec221d928703fd306bae1305c0ed3681461d989e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
791
sce
Ex3_17.sce
//Ex3_17 // Use of gradient for Edge Enhancement // Version : Scilab 5.4.1 // Operating System : Window-xp, Window-7 //Toolbox: Image Processing Design 8.3.1-1 //Toolbox: SIVP 0.5.3.1-2 //Reference book name : Digital Image Processing //book author: Rafael C. Gonzalez and Richard E. Woods clc; close; clear; xdel(winsid())//to close all currently open figure(s). a=rgb2gray(imread('Ex3_17.png')); [M N]=size(a); figure,ShowImage(a,'Original Image'); title('Original Image','color','blue','fontsize',4); /////////////////////////// Laplacian Filtering ///////////////////////// F=fspecial('sobel'); // Sobel Mask Image1=imfilter(a,F); figure,ShowImage(Image1,'Original Image'); title('Filtered Image with Sobel Gradient(3*3)','color','blue','fontsize',4);
5dbce633099b11a46822b25c5c403fabded41dc3
449d555969bfd7befe906877abab098c6e63a0e8
/2615/CH24/EX114.3/114.sce
3227810dead2875a8b25c81d33035ba4fc352601
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
167
sce
114.sce
clc //initialisation of variables b=5400//kg h=6//kg p=3*4^2//kg //CALCULATIONS M=b*h/p//kg/cm^2 //RESULTS printf('the maximum bending moment=% f kg/cm^2',M)
3387e86cde6ad5d136774f37e2defad010d371fd
449d555969bfd7befe906877abab098c6e63a0e8
/605/CH2/EX2.7/2_7.sce
000e2c73fc8db480cf285cfb009edfabfb0a2bc4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
961
sce
2_7.sce
//data in question // input power to the antenna(W) Ps=2; //reflection coefficient of transmitting antenna Yt=0.1 //reflection coefficient of receiving antenna Yr=0.2 //distance between two antennas //consider A=10^(-5) R=100*(A) //maximum directivity of receiving antenna(20 dB = 10^(20/10)) Gr=10^(20/10) //maximum directivity of transmitting antenna(16dB=10^(16/10)) Gt=10^(16/10) //data print printf("\nPs=2 W\tYt=0.1\tYr=0.2\tR=100λ\tGr=20 dB\tGt=16 dB\n") //equations and result // power transmitted in the forward direction printf("\nresult:-") Pt = (1-Yt^2)*Ps printf("\npower transmitted in the forward direction\n\tPt = (1-Yt^2)*Ps=%.2f W",Pt) //Friis transmission equation Pr=Pt*(A/(4*%pi*R))^2*Gr*Gt printf("\nFriis equation \n\tPr=Pt*(λ/(4*pi*R))^2*Gr*Gt=%fW",Pr) printf(" =%.0f mW",Pr*1000) //power delivered to receiver Pd=(1-Yr^2)*Pr printf("\npower delivered to receiver\n\tPd=(1-Yr^2)*Pr=%.1f mW",Pd*1000)
5b2f0837809e35177f69db64981358825baf35a9
0e1b45c07f0938ba9c8a003d6ae1cf2d8315efdb
/acmp.ru/239, Узор/test0.tst
93c475fd81cf08c058c6a25281a07b2f4707c734
[]
no_license
Kot-Angens/acm
c85d8582c3e84f218415321743864b9680e01f2e
05472eaa0fff7abb6679826085da5e0c990df4cb
refs/heads/master
2021-01-24T22:36:05.159612
2012-10-02T13:51:56
2012-10-02T13:51:56
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
92
tst
test0.tst
4 3 3 2 2 2 2 0 0 2 1 2 2 2 2 2 10 0 0 1 5 1 4 6 0 0 1 ~~~~~~~~~~~~~~~~~~~~~ 15
95fe5abece5a4ee7ed2337d0ac2dd9ec5e76fe68
449d555969bfd7befe906877abab098c6e63a0e8
/14/CH4/EX4.3/example_4_3.sce
040127f7389db1210854985d3f442ebeb38cf801
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
652
sce
example_4_3.sce
//Chapter 4 //Example 4.3 //chap3ex5 //Page 85 clear;clc; //Given Values d = 0.45;//in m k = 8.85e-12;//in F/m D_ab = 8;//in m D_bc = D_ab; D_ca = 16;//in m f = 60;//in Hz //From tables D = 1.382;//in inches //Calculations r = D * 0.3048 / (2 * 12)//divison by 12 to convert in to ft //multiplication by 0.3048 to convert ft to m D_b_sC = sqrt( r * d); D_eq = (D_ab * D_bc * D_ca)^(1/3); C_m = 2 * %pi * k / log(D_eq / D_b_sC); X_c = 1e-3 / (2 * %pi * f *C_m);//1e-3 to convert m to km printf("\n\n Capacitance = %.3fe-12 F/m \n\n",C_m * 1e12) printf("\n\n Capacitive reactance = %.4fe6 ohm km per phase to neutral",X_c/1e6)
d6548adec2255e4840d98602623829ef7c862dcb
e528067e2ccea7463d0b594f523db94cf160e66d
/C/special_dp/valid_str.tst
b9ab6898bf6adf6f7de9318227bf7f3ae0ccbc44
[]
no_license
soumyajuit/progs_Ubuntu
489a7b21717a049b8db9186a25516429888b6147
c55fd95a61e36038fd801b3b705bbc5e2b024689
refs/heads/master
2021-01-10T03:40:28.735389
2015-12-29T06:44:55
2015-12-29T06:44:55
48,730,996
1
0
null
null
null
null
UTF-8
Scilab
false
false
54
tst
valid_str.tst
abc iameatingric howdoyoudo blindmellonthereisnorain
5b400ddc2def0ecb51ee95dded5eccb1b336734d
449d555969bfd7befe906877abab098c6e63a0e8
/2175/CH4/EX4.1/4_1.sce
3f05c7d65ef262323b68c49ce133cd2fd3d34433
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
185
sce
4_1.sce
clc; s1=6.5; sf1=1.992; sfg1=4.717; x=(s1-sf1)/sfg1; hf1=697;//kJ/kg hfg1=2067;//kJ/kg h1=hf1+x*hfg1; h2=2995;//kJ/kg Q=h2-h1; disp("heat supplied:"); disp("kJ/kg",Q)
e7ac0098b2d4c88c3710bfc423a7ce1c20aa8cc4
449d555969bfd7befe906877abab098c6e63a0e8
/2966/CH1/EX1.22/1_22.sce
fbe882cbca08cac46915c93208abbf9c42c2191d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
639
sce
1_22.sce
//water// //page 1.35 example 6// clc Purity_soda=1 W1=5;//amount of CaCO3 in ppm// W2=22.2;//amount of CaCl2 in ppm// W3=2;//amount of MgSO4 in ppm// M1=100/100;//multiplication factor of CaCO3// M2=100/111;//multiplication factor of CaCl2// M3=100/120;//multiplication factor of MgSO4// P1=W1*M1;//in terms of CaCO3//L P2=W2*M2;//in terms of CaCO3//S P3=W3*M3;//in terms of CaCO3//L+S printf ("We do not take Na2SO4 and SiO2 since they do not react with lime/soda"); V=10000;//volume of water in litres// S=1.06*(P2+P3)*V/Purity_soda;//soda required in mg// S=S/10^3; printf("\n Amount of Soda required is %.1f g",S)
204ae1b6b44f4b54db36ef0d30b8dffc371097cc
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/Computing/testclean.sce
69822fa9e91a9bdd6b62e2c86ae5b7e548515d3f
[]
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
169
sce
testclean.sce
clean(10^(-9)) // not rounded clean(10^(-10)) // rounded to 0 %e^(%i*%pi) // rounding error on complex part clean(%e^(%i*%pi)) // error rounded to 0
82fe8eabcf4bf5bef5befa08866598d1cda3b44e
b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf
/TD4/Scripts/Service 1/serveur1_repart.sce
2ec294a10d7c6a29944b04fa1af197ce32bbb8f3
[]
no_license
MFrizzy/Modelisation
51794b2edf421f9d2206cb73972d8d8d7b1e9759
0ca819afbcbe00f58f3bbaa8fc97164ae2c1d3cb
refs/heads/master
2021-08-29T12:02:20.042037
2017-12-13T22:39:21
2017-12-13T22:39:21
106,943,303
0
0
null
null
null
null
UTF-8
Scilab
false
false
466
sce
serveur1_repart.sce
clf; clear; clc; load('C:\Users\tangu\OneDrive\Documents\GitHub\Modelisation\TD4\NetworkData.sod') // Extraction des temps de service index_bool = ( data(:, 3) == 1 ) tabS1 = data(index_bool, :) t_s1 = tabS1(1:$,4); tab = tabul(t_s1,'i') tab(:,2) = tab(:,2)/length(t_s1) F = cumsum(tab(:,2)) plot2d2(tab(:,1),F) legend("Fonction de répartitions des temps de service") // Définition des paramètres d'affichages a=gca(); a.x_location = "origin"; a.grid=[5,5];
f0fd699b877b70074e92dc6b106eb54778a36e95
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH5/EX5.35/35.sce
a8c2d3501f295140e5ca068940bb0d4e531fa09b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,307
sce
35.sce
clc y=1.4; cv=0.718; //kJ/kg.K m=1; //kg T1=290; //K n=1.3; r=16; y=1.4; T2=T1*(r)^(n-1); disp("(a)") T=[T1 300 310 320 330 340 350 360 370 380 390 400 410 420 430 440 450 460 470 480 490 500 510 520 530 540 550 560 570 580 590 600 610 620 630 640 650 660 T2]; function s=f(T) s=(y-n)*cv/(1-n)/10^3*log(T); endfunction s=[f(T1) f(300) f(310) f(320) f(330) f(340) f(350) f(360) f(370) f(380) f(390) f(400) f(410) f(420) f(430) f(440) f(450) f(460) f(470) f(480) f(490) f(500) f(510) f(520) f(530) f(540) f(550) f(560) f(570) f(580) f(590) f(600) f(610) f(620) f(630) f(640) f(650) f(660) f(T2)]; plot(s,T) T=[0 T2]; s=[f(T2) f(T2)]; plot(s,T,'r--') T=[0 T1]; s=[f(T1) f(T1)]; plot(s,T,'r--') T=[T1 T2]; s=[f(T1) f(T2)]; plot(s,T,'r--') xtitle("T-s diagram", "s", "T") legend("p*v^n=c") //Heat transferred = Area of trapezium = Base*mean ordinate //Heat transferred=dS*(T1+T2)/2 //Hence we get disp("Entropy change=Heat transferred/Mean absolute temperature") disp("(b)Entropy change") dS=cv*((n-y)/(n-1))*log(T2/T1); disp("dS=") disp(dS) disp("kJ/kg.K") disp("There is decrease in entropy") Q=cv*((y-n)/(n-1))*(T1-T2); Tmean = (T1+T2)/2; dS_app=Q/Tmean; %error=((-dS) - (-dS_app))/(-dS) * 100; disp("%age error =") disp(%error) disp("%")
0d1027c3b3c111e654e3ad24ca5fed3d6ed18e1f
4483ff664b4d01c53114a7fc535625c197c8f989
/green routing/misc.sce
002dd20c160566c6fe20253351be0e6b0902ca1a
[]
no_license
winash1618/myproject
be9b77d4a405edce7e625a999803016b50ab99d0
2132e76e6a996bee19f356a2b68af827fa6c621b
refs/heads/master
2022-12-06T06:09:06.487979
2020-08-20T02:00:54
2020-08-20T02:00:54
288,880,158
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,458
sce
misc.sce
z='1111' n=4 w=bin2dec(z) y=zeros(w,n) for i = 1 : w j=n d=dec2bin(i) k=strtod(d) while k > 1 c = modulo (k,10) k = int (k/10) y(i,j) = c j=j-1 end if( k == 1 ) y(i,j) = 1 end end disp (y) tc = 750 b = 140 FH = 15 FT = 32 r=1 p=1 total = zeros(w,1) demand = zeros(w,1) qc = zeros(w,1) demand_mat =[ 2500 4300 3750 6500 ] for i= 1 : w total(i,1) = exp(1500) end for i=1 : w for j =1 : n demand(i,1) = demand(i,1) + y(i,j)* demand_mat(1,j) end r=1 p=1 for q = 1 : 1500 total_cost= r*FH +(demand(i,1)/q)*p*FT if ( modulo(q,tc) == 0 ) p = p + 1 end if ( modulo(q,b) == 0 ) r = r + 1 end if ( total(i,1) > total_cost ) total(i,1) = total_cost qc(i,1) = q end end end disp(qc) disp(total) cost=zeros(n,1) cost1=zeros(n,1) x=eye(n,n) jin=x for iter=0 : 1000 cost=zeros(n,1) cost1=zeros(n,1) for i = 1 : n temp=x(i,:) for j = 1 : w if(sum(temp)~= 0) if(x(i,:)==y(j,:)) cost(i,1)=total(j,1) end end end end for i = 1:n for j =1:n pm=rand() if(pm<0.3 & jin(i,j)==0) for k = 1 : n if(jin(k,j)==1) jin(k,j)=0 end end jin(i,j)=1 end end end me=[ 1 0 0 1 ; 0 1 0 0] sa=[ 2 ; 3 ] dim=0 for i = 1 : 2 for j = 1 : n pum=0 for tim= 1 : n pum=pum+jin(j,tim)*me(i,tim) end if(pum > 0) cim=0 for k = 1 : n if (jin(j,k) == 0 & me(i,k)==0) cim=cim+1 end end if (cim ~= sa(i,1)) dim=dim+1 end end end end if(dim==0) for i = 1 : n temp=jin(i,:) for j = 1 : w if(sum(temp)~= 0) if(jin(i,:)==y(j,:)) cost1(i,1)=total(j,1) end end end end if(sum(cost1)<sum(cost)) x=jin end end end disp(sum(cost)) disp(x)
9b152dda2874e065382eee0f94be38aa373795d8
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/spcompack.man.tst
69cd143a8ff5f57e5b438a822a16e8bcd6f5a46c
[ "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
1,272
tst
spcompack.man.tst
clear;lines(0); // A is the sparse matrix: A=[1,0,0,0,0,0,0; 0,1,0,0,0,0,0; 0,0,1,0,0,0,0; 0,0,1,1,0,0,0; 0,0,1,1,1,0,0; 0,0,1,1,0,1,0; 0,0,1,1,0,1,1]; A=sparse(A); //For this matrix, the standard adjacency representation is given by: xadj=[1,2,3,8,12,13,15,16]; adjncy=[1, 2, 3,4,5,6,7, 4,5,6,7, 5, 6,7, 7]; //(see sp2adj). // increments in vector xadj give the number of non zero entries in each column // ie there is 2-1=1 entry in the column 1 // there is 3-2=1 entry in the column 2 // there are 8-3=5 entries in the column 3 // 12-8=4 4 //etc //The row index of these entries is given by the adjncy vector // for instance, // adjncy (3:7)=adjncy(xadj(3):xadj(4)-1)=[3,4,5,6,7] // says that the 5=xadj(4)-xadj(3) entries in column 3 have row // indices 3,4,5,6,7. //In the compact representation, the repeated sequences in adjncy //are eliminated. //Here in adjncy the sequences 4,5,6,7 and 7 are eliminated. //The standard structure (xadj,adjncy) takes the compressed form (lindx,xlindx) lindx=[1, 2, 3,4,5,6,7, 5, 6,7]; xlindx=[1,2,3,8,9,11]; //(Columns 4 and 7 of A are eliminated). //A can be reconstructed from (xadj,xlindx,lindx). [xadj,adjncy,anz]= sp2adj(A); adjncy - spcompack(xadj,xlindx,lindx)
734327e1e19f38f0f5ad437fb7b30c1d040cb7c7
449d555969bfd7befe906877abab098c6e63a0e8
/1067/CH3/EX3.1/3_1.sce
3a4478432d21aeda78249e03fc3c448f4210929c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
222
sce
3_1.sce
clear ; close ; clc ; R=10; L=0.1; f=50; w=2*%pi*f; k=sqrt((R^2)+((w*L)^2)); angle=atan(w*L/R); E=400 A=E*sin(angle)/k; i=A*exp((-R)*.02/L); i=round(i*100)/100; mprintf("the transient current =%fA",i)
bf4f44baba06049f2cadd59c65a38fa535766410
ffe30bb7dcdef053e8f540de90cab35f8bcb011f
/questao_04.sce
19f7e7a08e06ee36e909fd8452323c4481679342
[]
no_license
jaimedantas/Signal-Processing-Assignments
fca8861401b6f3412bd7fa46d45797c27de1d421
4cf92066551842af94c3e39b4652f2759ebbe3e0
refs/heads/master
2020-05-20T12:59:21.319349
2017-04-07T20:43:46
2017-04-07T20:43:46
80,398,198
0
0
null
null
null
null
UTF-8
Scilab
false
false
802
sce
questao_04.sce
//condicoes iniciais n_c = 2;//numero de condicoes iniciais n_i = 5;//numero de interacoes y(2) = 1;//y(-1) y(1) = 0;//y(-2) //laco de interacao for i = 3:(n_i + n_c) y(i) = (3/4)*y(i-1) -(1/8)*y(i-2) +(1/2)^(i-3); end //deslocamento do vetor y para a possicao 1 for i = 1:(n_i) aux(i) = y(i+n_c); end f = aux'//transposta do vetor resposta //agora o vetor aux eh o vetor y(i) ordemado corretamente a partir da posicao y(1) //f = aux'; //grafico //vetor de n discreto n=[1:1:n_i]; //variáveis auxiliares para o grafico x_min = n(1)-2; x_max= n(length(n)); y_min = min(f); y_max = max(f)+0.5; plot2d3(n-1,f, style = -4, rect = [x_min,y_min,x_max,y_max]);//grafico discreto de y(n) em funcao de n xtitle("",["n"],["y(n)"], boxed = 0);//titulo dos eixos xgrid(4);
39b83886f03fe8e104ae64dbf9bea006c8515b52
449d555969bfd7befe906877abab098c6e63a0e8
/1580/CH4/EX4.6/Ch04Ex6.sce
496c5ec640db8af394b4373f615b15c1f294bf2d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
722
sce
Ch04Ex6.sce
// Scilab Code Ex4.6 : Page-4.15 (2004) clc;clear; n = 4; // Second order of diffraction M = 58.5; // Molecular weight of crystal d = 2180; // Density of crystal, kg per cm cube N = 6.02e+26; // Avogadro number , k / mol a = ((n*M)/(d*N))^(1/3); // Distance between two adjacent atoms of same kind, nm b = a/2; // Distance between two adjacent atoms of different kind, nm printf("\nDistance between two adjacent atoms of same kind = %5.3f nm ", a/1e-9); printf("\nDistance between two adjacent atoms of different kind = %5.3f nm ", b/1e-9); // Result // Distance between two adjacent atoms of same kind = 0.563 nm // Distance between two adjacent atoms of different kind = 0.281 nm