-
-
Save pukpr/0708cf8a38867973b45da9e1ba9672ee to your computer and use it in GitHub Desktop.
| with Ada.Command_Line; | |
| with System.Task_Info; | |
| with GEM.LTE.Primitives.Solution; | |
| with GEM.LTE.Primitives.Shared; | |
| with Text_IO; | |
| with GNAT.OS_Lib; | |
| with Ada.Calendar; | |
| procedure ENSO_Opt is | |
| N : Positive := Gem.Getenv("NUMBER_OF_PROCESSORS", System.Task_Info.Number_Of_Processors); | |
| dLOD_dat : String := Gem.Getenv("DLOD_DAT", "../dlod3.dat"); | |
| --N : Positive := System.Task_Info.Number_Of_Processors; | |
| Ch : Character; | |
| Avail : Boolean; | |
| T : Ada.Calendar.Time; | |
| Cycle : Duration := Duration(Gem.Getenv("TIMEOUT", LONG_FLOAT(Duration'Last)/2.0)); | |
| dLOD_Scale : constant Long_Float := GEM.Getenv("DLOD_SCALE", 0.0); | |
| Toff : constant Long_Float := GEM.Getenv("TOFF", 0.0); | |
| use type Ada.Calendar.Time; | |
| D : GEM.LTE.Primitives.Shared.Param_S := | |
| (NLP => GEM.LTE.LP'Length, | |
| NLT => GEM.LTE.LTM'Length, | |
| A => | |
| (k0 => 0.0, | |
| level => 0.0, | |
| NLP => GEM.LTE.LP'Length, | |
| NLT => GEM.LTE.LTM'Length, | |
| LP => GEM.LTE.LP, | |
| LTAP => GEM.LTE.LTAP), | |
| B => | |
| (NLP => GEM.LTE.LPAP'Length, | |
| NLT => GEM.LTE.LTM'Length, | |
| LPAP => GEM.LTE.LPAP, | |
| LT => GEM.LTE.LTM, | |
| Offset => 0.0, | |
| bg => 0.0, | |
| ImpA => 1.0, -- 9.0 | |
| ImpB => 0.0, ---9.0, | |
| impC => 0.0, | |
| delA => 0.0, | |
| delB => 0.0, | |
| asym => 0.0, | |
| ann1 => 0.0, | |
| ann2 => 0.0, | |
| sem1 => 0.0, | |
| sem2 => 0.0, | |
| year => 0.0, | |
| ir => 0.0, | |
| mA => 0.0, | |
| mP => 0.0, | |
| shiftT => 0.00000, | |
| init => 0.0063), | |
| C => (others => 0) | |
| ); | |
| use gem.lte.primitives; | |
| Data_Records : Data_Pairs := Make_Data(dLOD_dat); | |
| Cal : Data_Pairs := Data_Records; | |
| File : Text_IO.File_Type; | |
| begin | |
| Text_IO.Put_Line(N'Img & " processors available, timeout=" & Cycle'Img); | |
| GEM.LTE.Primitives.Shared.Load(D); -- if available | |
| Cal := Tide_Sum(Template => Data_Records, | |
| Constituents => D.B.LPAP, | |
| Periods => D.A.LP, | |
| Ref_Time => Toff+D.B.ShiftT, -- + D.B.ShiftT, -- Data_Records(Data_Records'First).Date | |
| Scaling => 1.0, | |
| Year_Len => GEM.LTE.Year_Length, | |
| Integ => 0.0 ); | |
| if GEM.Command_Line_Option_Exists("r") or not GEM.Getenv("DLOD_REF", FALSE) then | |
| Text_IO.Create(File, Text_IO.Out_File, "dlod_cal.csv"); | |
| for I in Cal'Range loop | |
| --Data_Records(I).Value := -Data_Records(I).Value; | |
| Text_IO.Put_Line(File, Cal(I).Date'Img & "," & Data_Records(I).Value'Img & "," & Cal(I).Value'Img); | |
| end loop; | |
| Text_IO.Close(File); | |
| Put(CC(Data_Records,Cal)); | |
| Text_IO.Put_Line(" -- Loading dLOD"); | |
| Gnat.Os_Lib.Os_Exit(0); | |
| else -- update | |
| Put(CC(Data_Records,Cal)); | |
| Text_IO.Put_Line(" -- Referencing dLOD"); | |
| end if; | |
| GEM.LTE.Primitives.Shared.Put(D); | |
| T := Ada.Calendar.Clock; | |
| GEM.LTE.Primitives.Solution.Start(D.NLP,D.NLT,N); | |
| for I in 1..Integer'Last loop | |
| -- delay 1.0; | |
| -- The call to Status is blocking | |
| declare | |
| S : String := GEM.LTE.Primitives.Solution.Status; | |
| begin | |
| if I mod GEM.LTE.Primitives.Solution.Check_Every_N_Loops = 0 then | |
| Text_IO.Put_Line(S & " #" & I'Img); | |
| end if; | |
| exit when GEM.LTE.Primitives.Halted; | |
| end; | |
| Text_IO.Get_Immediate(Ch, Avail); | |
| if Avail then | |
| if Ch = 'q' or Ch = 's' then | |
| GEM.LTE.Primitives.Stop; | |
| elsif Ch = 'x' then | |
| Text_IO.Put_Line("Exiting, no save"); | |
| Gnat.Os_Lib.Os_Exit(0); | |
| elsif Ch in '1' .. '9' then | |
| GEM.LTE.Primitives.Solution.Set_Trigger (Character'Pos(Ch) - Character'Pos('1') + 1); | |
| end if; | |
| end if; | |
| if Ch = 'q' then | |
| exit when GEM.LTE.Primitives.Halted; | |
| end if; | |
| if Ada.Calendar.Clock > T + Cycle then | |
| GEM.LTE.Primitives.Stop; | |
| T := Ada.Calendar.Clock; | |
| exit when GEM.LTE.Primitives.Halted; -- new | |
| end if; | |
| end loop; | |
| Text_IO.Put_Line("Main exiting, flushing other tasks"); | |
| delay 5.0; | |
| end ENSO_Opt; |
Complementary interval
0.99249642224 -- Loading dLOD
0.00104414157 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
-9.31172964885:delA:
0.27673060528:delB:
9.17551952126:asym:
0.13990536769:ann1:
-2.64078438826:ann2:
-0.12768005717:sem1:
2.05669754576:sem2:
0.00008637969:year:
0.09286734036:IR:
0.00001993948 :mA:
0.00082584904 :mP:
0.00849349296 :shiftT:
-0.64001832329 :init:
---- Tidal ----
9.10846048884, -0.03325325089 1
29.53063061891, -0.04236976287 2
27.09267692660, 0.27778967836 3
7.08840410409, 0.73827950605 4
6.85248390316, -0.09874301394 5
13.60611040750, -1.40646547437 6
13.66083077700, 0.11845013647 7
3396.73824406533, -2.24413168433 8
9.12068919638, 0.01370519597 9
13.77727494300, -0.06780239083 10
6793.47648813065, -0.02157084790 11
27.55454988600, 0.02971649833 12
27.66676714572, 0.97772165562 13
27.44323926226, 0.01217940231 14
1616.30271425126, 3.12619932631 15
6.85940288609, -0.01972287516 16
7.09580796489, -0.01165447770 17
9.55688259347, 0.18042099238 18
9.13295078376, -0.02252426400 19
2190.35004466729, -0.01203688110 20
27.21222081500, -0.00791729612 21
9.18484996200, 0.20404781000 22
14.76531530945, 0.00133775354 23
31.81203807325, 0.00143847187 24
9.54345711105, -2.86494530711 25
13.63341568476, 0.00381976930 26
26.98505934729, 1.31000342111 27
365.24997477969, 0.00231313179 28
182.62498738984, -4.60101810633 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
0.02920965715 :K0:
-0.10087017159 :level:
480.99640470920, 0.37684522036, -2.94432915501 4836
0.09945173306, 0.25365195396, -0.50730120010 1
0.19890346613, 0.34489694321, 0.54349747952 2
0.29835519919, 0.34319847247, 1.35264304303 3
0.39780693225, 0.21245638009, 1.82151191995 4
0.49725866532, 0.30341099999, 3.06567447433 5
0.59671039838, 0.46402882420, -2.47519631228 6
0.69616213144, 0.35962901810, -1.87623137489 7
0.79561386451, 0.13143699722, -0.44985453892 8
0.89506559757, 0.26739112333, 0.28220468764 9
0.99451733063, 0.17266778174, 0.94702434918 10
1.09396906370, 0.36429397055, 2.05113351280 11
1.19342079676, 0.38095818712, 2.85942102928 12
1.29287252982, 0.31014462863, -2.95205807807 13
1.39232426289, 0.36038971482, -1.58643959106 14
1.49177599595, 0.27091924546, -0.66939594212 15
1.59122772901, 0.21041393595, 0.07628623490 16
1.69067946207, 0.11307682742, 1.00441350031 17
1.79013119514, 0.36849703883, 1.47510154002 18
1.88958292820, 0.30665272940, 2.41717743420 19
1.98903466126, 0.07691795200, -2.05584145943 20
2.08848639433, 0.04838952595, -0.77139075620 21
2.18793812739, 0.34647687521, -1.28686772142 22
2.28738986045, 0.20040124051, -0.39717147086 23
2.38684159352, 0.05842905345, 0.55945342281 24
2.48629332658, 0.04986321631, 1.48699198326 25
2.58574505964, 0.11793314710, 2.30047637876 26
2.68519679271, 0.18652409951, 2.72948259700 27
2.78464852577, 0.17159748699, -2.04614290435 28
CC 0.1988314336 0.7009665023 3 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932complement
0.00102366514 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
-9.36291460521:delA:
0.27676443679:delB:
9.16983178675:asym:
0.10450359302:ann1:
-2.06627931412:ann2:
-0.11890661910:sem1:
2.02029076498:sem2:
0.00007482239:year:
0.07554108380:IR:
0.00001624870 :mA:
-0.00082033532 :mP:
0.00852452545 :shiftT:
-0.14134192078 :init:
---- Tidal ----
9.10846048884, -0.03241667272 1
29.53063069445, -0.03705539743 2
27.09267692660, 0.29295215296 3
7.08840411279, 0.73826958311 4
6.85248390316, -0.10228006201 5
13.60611040750, -1.40565092456 6
13.66083077700, 0.11755477257 7
3396.73824406533, -2.24309894682 8
9.12068919638, 0.01342074745 9
13.77727494300, -0.06729580554 10
6793.47648813065, -0.02293594624 11
27.55454988600, 0.03249398142 12
27.66676714572, 1.01788122266 13
27.44323926226, 0.01496501646 14
1616.30271425126, 3.12249901222 15
6.85940288609, -0.01819363974 16
7.09580797362, 0.01221685449 17
9.55688260930, -0.18284880971 18
9.13295078376, -0.02424965811 19
2190.35004466729, -0.00830742816 20
27.21222081500, -0.00808252712 21
9.18484996200, 0.20507965884 22
14.76531534723, -0.01659292325 23
31.81203824859, 0.00458397393 24
9.54345712683, 3.85361329264 25
13.63341568476, 0.00216910255 26
26.98505934729, 1.43707038845 27
365.24996322239, 0.00492984019 28
182.62498161119, -3.01223983817 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
0.02105591630 :K0:
0.36191719024 :level:
0.13263026906, 0.15333754318, -0.86637109554 1
0.26526053813, 0.16566731325, -2.28418853481 2
0.39789080719, 0.15624771229, -2.08952252232 3
0.53052107625, 0.14295619211, -0.76920955983 4
0.66315134532, 0.20489413916, -0.18107118343 5
0.79578161438, 0.18464918082, 1.95538499809 6
0.92841188344, 0.14782976018, 1.67990504401 7
1.06104215251, 0.00991254340, -2.83547267811 8
1.19367242157, 0.17260478077, 2.35618477140 9
1.32630269063, 0.14303773106, 1.06990473362 10
1.45893295970, 0.04606264433, -2.30444725337 11
1.59156322876, 0.04366569542, 0.94866266017 12
1.72419349782, 0.10169618695, -0.95967218957 13
1.85682376689, 0.10932932937, 0.21970191312 14
1.98945403595, 0.05574458048, -0.62240487386 15
2.12208430501, 0.24693679691, 2.34726463850 16
2.25471457408, 0.14900515740, 2.92447376752 17
2.38734484314, 0.09384899044, 3.12996381775 18
2.51997511220, 0.08326485864, 2.54022633226 19
2.65260538127, 0.14013177029, -1.01335852131 20
2.78523565033, 0.14749350587, 2.03255121281 21
2.91786591939, 0.23770342644, 0.64026207968 22
3.05049618845, 0.07700455478, 0.26317350974 23
3.18312645752, 0.07291037069, 0.61964300746 24
3.31575672658, 0.32698222740, 2.65490171592 25
3.44838699564, 0.11431757655, -0.86484852498 26
3.58101726471, 0.13675428731, -2.42591077218 27
3.71364753377, 0.26871238038, 1.88243697494 28
CC 0.1026827735 0.7333333565 5 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932complementC
0.98795947943 -- Loading dLOD
more harmonics
0.00102384941 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
-9.36291460521:delA:
0.27676443679:delB:
9.16983178675:asym:
0.10449312021:ann1:
-2.04107616747:ann2:
-0.11889660013:sem1:
2.02098483555:sem2:
0.00007514472:year:
0.07375190533:IR:
0.00001623849 :mA:
-0.00082031215 :mP:
0.00852580302 :shiftT:
-0.14056814326 :init:
---- Tidal ----
9.10846048884, -0.03234596985 1
29.53063069235, -0.03703793355 2
27.09267692660, 0.29307072994 3
7.08840411255, 0.73827992561 4
6.85248390316, -0.10225581001 5
13.60611040750, -1.40568314573 6
13.66083077700, 0.11742131512 7
3396.73824406533, -2.24309894682 8
9.12068919638, 0.01347492681 9
13.77727494300, -0.06745521064 10
6793.47648813065, -0.02301628260 11
27.55454988600, 0.03250204070 12
27.66676714572, 1.01786091046 13
27.44323926226, 0.01496725278 14
1616.30271425126, 3.12290359483 15
6.85940288609, -0.01746515366 16
7.09580797337, 0.01221716127 17
9.55688260885, -0.18284678180 18
9.13295078376, -0.02422754583 19
2190.35004466729, -0.00830742816 20
27.21222081500, -0.00799149278 21
9.18484996200, 0.20510433953 22
14.76531534617, -0.01730678797 23
31.81203824370, 0.00452903263 24
9.54345712639, 3.91913292759 25
13.63341568476, 0.00225356655 26
26.98505934729, 1.47080773250 27
365.24996354472, 0.00493209904 28
182.62498177236, -2.97770227129 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
0.02295951619 :K0:
0.36508657776 :level:
0.13257797661, 0.17904512724, -1.02002174005 1
0.26515595322, 0.18155248302, -2.12810179364 2
0.39773392983, 0.13961227313, -1.93301835519 3
0.53031190644, 0.13703488307, -0.86478374342 4
0.66288988305, 0.21796977596, 0.09374282842 5
0.79546785965, 0.20781532056, 2.03717555686 6
0.92804583626, 0.13980638351, 1.75875717705 7
1.06062381287, 0.01722494873, -0.79621169026 8
1.19320178948, 0.12328303598, 2.28450191451 9
1.32577976609, 0.12723970300, 0.71190930641 10
1.45835774270, 0.03408643401, -2.38912491917 11
1.59093571931, 0.01946345701, 2.07093658577 12
1.72351369592, 0.04996054473, -1.02156174580 13
1.85609167253, 0.06818443245, 0.72490168255 14
1.98866964914, 0.02507512063, -1.60514130271 15
2.12124762574, 0.25616738066, 2.34093214666 16
2.25382560235, 0.13038267328, 2.86436054094 17
2.38640357896, 0.06893319438, -2.21003971238 18
2.51898155557, 0.06501038375, 1.73240918361 19
2.65155953218, 0.18750821478, -0.91252917927 20
2.78413750879, 0.18533877895, 1.89129295828 21
2.91671548540, 0.25260056669, 0.61176139766 22
3.04929346201, 0.06064133080, 0.49310759157 23
3.18187143862, 0.11876755343, 0.74301674566 24
3.31444941523, 0.30883067634, 2.51049316250 25
3.44702739183, 0.12149291154, -0.77383686071 26
3.57960536844, 0.09643185225, -2.43518629034 27
3.71218334505, 0.22109602710, 1.91972132409 28
3.84476132166, 0.03735112200, 0.01874454659 29
3.97733929827, 0.06160754815, 1.31293217558 30
4.10991727488, 0.10696012158, -1.78256436607 31
5.56827501758, 0.07673271906, -2.01241441185 42
5.70085299419, 0.10491402588, 1.25687367339 43
5.83343097080, 0.04071004292, 1.83155788495 44
5.96600894741, 0.16464023861, 1.29625650712 45
6.09858692401, 0.09649132705, 1.86488311103 46
6.23116490062, 0.09480119826, 1.48515131141 47
6.36374287723, 0.10791590114, -1.18723880968 48
6.49632085384, 0.06952373584, -0.82933114219 49
6.62889883045, 0.07406792218, -0.90867958765 50
6.76147680706, 0.07483473401, -0.45851457424 51
CC 0.3494173009 0.7473593266 8 1
..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932complementD
test interval triggered at CC=0.7 !
0.00102034689 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
-9.35942820875:delA:
0.27676443679:delB:
9.16983178675:asym:
0.10358859540:ann1:
-1.90324487746:ann2:
-0.12447721562:sem1:
2.00389702446:sem2:
0.00007711571:year:
0.08731132672:IR:
0.00001565809 :mA:
0.00081699516 :mP:
0.00851963226 :shiftT:
-0.41949149331 :init:
---- Tidal ----
9.10846048884, -0.03247992406 1
29.53063067946, -0.03749199896 2
27.09267692660, 0.29322957368 3
7.08840411107, 0.73829269474 4
6.85248390316, -0.10191504408 5
13.60611040750, -1.40573557496 6
13.66083077700, 0.11746505606 7
3396.73824406533, -2.24309894682 8
9.12068919638, 0.01379590228 9
13.77727494300, -0.06327014186 10
6793.47648813065, -0.02360973800 11
27.55454988600, 0.03358495781 12
27.66676714572, 1.01775303288 13
27.44323926226, 0.01583105952 14
1616.30271425126, 3.12250897580 15
6.85940288609, -0.01855210241 16
7.09580797189, 0.01222129231 17
9.55688260616, -0.18282451837 18
9.13295078376, -0.02442380312 19
2190.35004466729, -0.00828225345 20
27.21222081500, -0.00792663014 21
9.18484996200, 0.20521388210 22
14.76531533973, -0.01942711873 23
31.81203821380, 0.00449498970 24
9.54345712370, 4.25280516061 25
13.63341568476, 0.00417266785 26
26.98505934729, 2.94923729662 27
365.24996551571, 0.00716737199 28
182.62498275785, -1.22114090743 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
0.01345288262 :K0:
0.32423525140 :level:
-0.13247003306, 0.13803665463, -2.59934912576 1
-0.26494006613, 0.12169436910, -1.36676271549 2
-0.39741009919, 0.11755412660, -2.00114072810 3
-0.52988013225, 0.14733620534, -2.73700683082 4
-0.66235016531, 0.26089434515, 1.97736423463 5
-0.79482019838, 0.19968805913, 0.04835040737 6
-0.92729023144, 0.18158093958, -0.02199414674 7
-1.05976026450, 0.06968168459, -3.03660716521 8
-1.19223029757, 0.13101945339, -1.05608217286 9
-1.32470033063, 0.07629719697, 0.28777181667 10
-1.45717036369, 0.02808532524, -2.43418730156 11
-1.58964039676, 0.02216254365, 2.39060582154 12
-1.72211042982, 0.04685801108, 2.00781329196 13
-1.85458046288, 0.03867931987, -1.43493923309 14
-1.98705049594, 0.04070087473, 0.09254839261 15
-2.11952052901, 0.25227743789, -2.57891842395 16
-2.25199056207, 0.18952288232, -2.88215782729 17
-2.38446059513, 0.12562397653, 1.86681796613 18
-2.51693062820, 0.08919079836, -2.95306039164 19
-2.64940066126, 0.17847985319, 0.30613062087 20
-2.78187069432, 0.23573326796, 2.97461861217 21
-2.91434072738, 0.21056441645, -2.30985071251 22
-3.04681076045, 0.10794473785, 2.79272103146 23
-3.17928079351, 0.12695946290, -2.08813007104 24
-3.31175082657, 0.29224174758, 1.92792266128 25
-3.44422085964, 0.03027943505, 0.05556059081 26
-3.57669089270, 0.06478255712, 0.53162304448 27
-3.70916092576, 0.14411557191, 1.95552585027 28
-3.84163095883, 0.10299993804, -2.99655882757 29
-3.97410099189, 0.09585932565, 0.77703803813 30
-4.10657102495, 0.08712645028, -0.64607934453 31
-5.56374138864, 0.16929150163, 3.07958845731 42
-5.69621142171, 0.09140369972, 0.25953642492 43
-5.82868145477, 0.07699896728, -1.45439553390 44
-5.96115148783, 0.19556089801, -1.12159713871 45
-6.09362152089, 0.01490777071, -2.64166616697 46
-6.22609155396, 0.07533369809, -0.82058996029 47
-6.35856158702, 0.06139139179, -0.31200373739 48
-6.49103162008, 0.14886945061, -0.86907442325 49
-6.62350165315, 0.17607610451, 0.34739460494 50
-6.75597168621, 0.18838056322, 0.05022818607 51
CC 0.7187850831 0.7808142956 1 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932complementE50
0.00101944842 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
-9.36161566313:delA:
0.27676443679:delB:
9.16983178675:asym:
0.11254621304:ann1:
-1.93513074496:ann2:
-0.13149271203:sem1:
2.01641112958:sem2:
0.00007702776:year:
0.09879119168:IR:
0.00001523788 :mA:
-0.00081446317 :mP:
0.00852283889 :shiftT:
-0.40839928466 :init:
---- Tidal ----
9.10846048884, -0.03254472799 1
29.53063068004, -0.03833473436 2
27.09267692660, 0.29299518347 3
7.08840411113, 0.73829269474 4
6.85248390316, -0.10193297378 5
13.60611040750, -1.40572142024 6
13.66083077700, 0.11800155446 7
3396.73824406533, -2.24309435587 8
9.12068919638, 0.01554658741 9
13.77727494300, -0.06017285776 10
6793.47648813065, -0.02375503985 11
27.55454988600, 0.03420989076 12
27.66676714572, 1.01778559376 13
27.44323926226, 0.01600133498 14
1616.30271425126, 3.12245137307 15
6.85940288609, -0.01811322271 16
7.09580797195, 0.01222219169 17
9.55688260628, -0.18281875459 18
9.13295078376, -0.02438385307 19
2190.35004466729, -0.00878586686 20
27.21222081500, -0.00793631304 21
9.18484996200, 0.20496952379 22
14.76531534002, -0.01997385188 23
31.81203821513, 0.00462654294 24
9.54345712382, 3.88314367727 25
13.63341568476, 0.00604469528 26
26.98505934729, 3.22512423638 27
365.24996542776, 0.00950312092 28
182.62498271388, -0.64435874927 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
0.01398095579 :K0:
0.29308158481 :level:
-0.13245040355, 0.15384505702, -2.52524295154 1
-0.26490080711, 0.15801523931, -1.16799655845 2
-0.39735121066, 0.10810333977, -1.85071880101 3
-0.52980161422, 0.10756475620, -2.70090878505 4
-0.66225201777, 0.25345088664, 1.91829326403 5
-0.79470242133, 0.20595576978, 0.13272894685 6
-0.92715282488, 0.18856869686, -0.05328056115 7
-1.05960322844, 0.12292224170, 3.06801628897 8
-1.19205363199, 0.10196828278, -1.26558924924 9
-1.32450403555, 0.09651442572, 0.30370358387 10
-1.45695443910, 0.02185846609, 2.85068119014 11
-1.58940484266, 0.03656282621, 0.55692428886 12
-1.72185524621, 0.04317946655, 2.46344768842 13
-1.85430564976, 0.01418367383, 0.27603955996 14
-1.98675605332, 0.05344070300, 0.17012353874 15
-2.11920645687, 0.21349334576, -2.74043158024 16
-2.25165686043, 0.20135796333, -2.87278560395 17
-2.38410726398, 0.14777498171, 1.98721500346 18
-2.51655766754, 0.08309976875, 2.92923403305 19
-2.64900807109, 0.14622224580, 0.29102296061 20
-2.78145847465, 0.22904744868, 2.83679113399 21
-2.91390887820, 0.20534910115, -2.22546243229 22
-3.04635928176, 0.10707755230, 2.96232166988 23
-3.17880968531, 0.10723967194, -2.01120330028 24
-3.31126008887, 0.20373331627, 1.78232824086 25
-3.44371049242, 0.03510343856, 1.26258058386 26
-3.57616089597, 0.09047602184, 0.55041639434 27
-3.70861129953, 0.11769760822, 1.60172190055 28
-3.84106170308, 0.15017261430, 2.84599883767 29
-3.97351210664, 0.11621288545, 0.81591869937 30
-4.10596251019, 0.03271396981, -0.64251778121 31
-5.56291694929, 0.17074273370, -3.07862051368 42
-5.69536735285, 0.07478050457, 0.49455308551 43
-5.82781775640, 0.01983786477, -0.48773636839 44
-5.96026815996, 0.28869391377, -1.38185674441 45
-6.09271856351, 0.04135062286, -1.15016841287 46
-6.22516896707, 0.05730124983, -1.11166170819 47
-6.35761937062, 0.10714042377, -1.49099261690 48
-6.49006977418, 0.10340175013, -1.70022362027 49
-6.62252017773, 0.23809708589, 0.09400544323 50
-6.75497058129, 0.20949182386, -0.53198001185 51
CC 0.4003345998 0.8046507082 3 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932complementf50
0.00102091480 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
-9.36133815593:delA:
0.27676443679:delB:
9.16983178675:asym:
0.11401265359:ann1:
-1.93707479509:ann2:
-0.15260045546:sem1:
2.02501730431:sem2:
0.00007665930:year:
0.10731540841:IR:
0.00001549130 :mA:
-0.00081457339 :mP:
0.00851865008 :shiftT:
-0.31981917477 :init:
---- Tidal ----
9.10846048884, -0.03254472799 1
29.53063068245, -0.03872835006 2
27.09267692660, 0.29298015397 3
7.08840411141, 0.73829269474 4
6.85248390316, -0.10193297378 5
13.60611040750, -1.40572142024 6
13.66083077700, 0.11801891174 7
3396.73824406533, -2.24309435587 8
9.12068919638, 0.01554181335 9
13.77727494300, -0.06116857633 10
6793.47648813065, -0.02376392875 11
27.55454988600, 0.03438050732 12
27.66676714572, 1.01777953071 13
27.44323926226, 0.01607667530 14
1616.30271425126, 3.12236854886 15
6.85940288609, -0.01835951267 16
7.09580797223, 0.01222265064 17
9.55688260678, -0.18283241779 18
9.13295078376, -0.02431785154 19
2190.35004466729, -0.00878944430 20
27.21222081500, -0.00793655301 21
9.18484996200, 0.20494446290 22
14.76531534122, -0.01997385188 23
31.81203822072, 0.00476128809 24
9.54345712433, 3.62951336711 25
13.63341568476, 0.00610396608 26
26.98505934729, 3.24668212111 27
365.24996505930, 0.00950312092 28
182.62498252965, -0.71954896937 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
0.02047357080 :K0:
0.34754841211 :level:
-0.13245040355, 0.12241986596, -2.44389757082 1
-0.26490080710, 0.19227300360, -0.95655051073 2
-0.39735121065, 0.14094510137, -1.81996525108 3
-0.52980161420, 0.11631896116, -2.76689771760 4
Exited 4
-0.66225201775, 0.21420523384, 2.36078055830 5
-0.79470242130, 0.17847539882, 0.37571799298 6
-9.66887945915, 0.11480310828, -1.25565055803 73
-1.05960322840, 0.14504969796, -3.07770826894 8
-7.94702421300, 0.12828637711, 0.10760165832 60
-1.32450403550, 0.14602311776, 0.37859728175 10
-11.39073470530, 0.21526743687, -0.80998755400 86
-1.58940484260, 0.02462100600, 1.21817720857 12
-8.07947461655, 0.07558401588, -2.16459424382 61
-1.85430564970, 0.07094714043, 1.39177834582 14
-12.31788753015, 0.09761961767, 1.91709799160 93
-13.11258995145, 0.11214736261, 0.13714999222 99
-2.25165686035, 0.18183193535, -1.38444238792 17
-2.38410726390, 0.07827646023, 3.06200641561 18
-2.51655766745, 0.09380952602, -1.62737747487 19
-2.64900807100, 0.11788130208, 1.63263729996 20
-2.78145847455, 0.26138409789, -2.07235234458 21
-2.91390887810, 0.22601483085, -0.84082029493 22
-3.04635928165, 0.11185637301, -1.72800362030 23
-3.17880968520, 0.09574476409, -0.84612870463 24
-3.31126008875, 0.21234517905, 3.11482038290 25
-5.16556573845, 0.16849636339, -3.12647165694 39
-3.57616089585, 0.12828184922, 2.24272598599 27
-3.70861129940, 0.08630392643, -2.23893458509 28
-3.84106170295, 0.15074065069, -1.69662639866 29
-3.97351210650, 0.13419186292, -3.03111445210 30
-10.72848268755, 0.07195228954, -2.36377075818 81
-5.56291694910, 0.18781838569, -0.15716356477 42
-7.81457380945, 0.10610224297, 0.53006396297 59
-9.00662744140, 0.10052867922, 1.24558179254 68
-5.96026815975, 0.27058168477, 1.43503975724 45
-8.34437542365, 0.10954169701, 2.64899139826 63
-7.68212340590, 0.08557621695, 2.44392362065 58
-6.35761937040, 0.09811389655, 2.13876153487 48
-6.49006977395, 0.09188079841, 1.33060861467 49
-6.62252017750, 0.30486225544, -2.79922334510 50
-6.75497058105, 0.17420624427, 2.64132904037 51
CC 0.5183353746 0.8332474345 7 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932complementf50hi
0.00102057834 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
-9.36332501683:delA:
0.27676443679:delB:
9.16983178675:asym:
0.13359831931:ann1:
-2.02548165034:ann2:
-0.13150113852:sem1:
2.01557847728:sem2:
0.00007691703:year:
0.10426431224:IR:
0.00001551884 :mA:
-0.00081346828 :mP:
0.00851849261 :shiftT:
-0.29145558707 :init:
---- Tidal ----
9.10846048884, -0.03266866634 1
29.53063068076, -0.03857389348 2
27.09267692660, 0.29255085911 3
7.08840411122, 0.73829269474 4
6.85248390316, -0.10219469713 5
13.60611040750, -1.40574733711 6
13.66083077700, 0.11807411196 7
3396.73824406533, -2.24307329399 8
9.12068919638, 0.01557258606 9
13.77727494300, -0.06328110694 10
6793.47648813065, -0.02372381262 11
27.55454988600, 0.03457932297 12
27.66676714572, 1.01773980591 13
27.44323926226, 0.01616030938 14
1616.30271425126, 3.12251055759 15
6.85940288609, -0.01857321485 16
7.09580797204, 0.01221909922 17
9.55688260643, -0.18285950742 18
9.13295078376, -0.02433529698 19
2190.35004466729, -0.00876428193 20
27.21222081500, -0.00805062606 21
9.18484996200, 0.20485528031 22
14.76531534038, -0.02000499505 23
31.81203821681, 0.00483139096 24
9.54345712397, 3.77701830103 25
13.63341568476, 0.00603826416 26
26.98505934729, 3.26354080824 27
365.24996531703, 0.01026629018 28
182.62498265851, -0.40291278818 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
0.02331723182 :K0:
0.35186509681 :level:
-0.13250109893, 0.11245882713, -2.72394836080 1
-0.26500219786, 0.23756719286, -0.99480112231 2
-0.39750329679, 0.10944008946, -1.61565279718 3
-0.53000439572, 0.15026251370, -2.64360499870 4
-8.87757362838, 0.07342323721, 0.38686587653 67
-0.79500659359, 0.16949978033, 0.69146454023 6
-9.67258022196, 0.06392976810, 0.48898740301 73
-1.06000879145, 0.17416949125, -2.91012094671 8
-7.95006593586, 0.15513798683, 1.42412352240 60
-1.32501098931, 0.14881884163, 0.43341225809 10
-11.39509450807, 0.21919384193, 1.14854445630 86
-12.45510329952, 0.09396245494, 1.47759150393 94
-8.08256703479, 0.11350974080, -0.67713460731 61
-1.85501538503, 0.06081211572, 1.72176955148 14
-12.32260220058, 0.16266872503, -2.47808940927 93
-13.11760879417, 0.11908577263, 2.13193666173 99
-2.25251868183, 0.13176024077, -0.67755887239 17
-2.91502417648, 0.21237333415, -0.39434895489 22
-2.51752087969, 0.09289170647, -1.26590696755 19
-2.65002197862, 0.16532746190, 2.19873652200 20
-2.78252307755, 0.23656068333, -1.67430995452 21
-0.66250549466, 0.24808774737, 2.34054270351 5
-3.04752527541, 0.18102738152, -0.99088157899 23
-12.72010549738, 0.17286359455, -1.70508249887 96
-3.31252747328, 0.16798207685, -2.68774610697 25
-5.16754285831, 0.17105834714, -2.40217519374 39
-2.38501978076, 0.10462641577, -3.02343271324 18
-3.71003077007, 0.13636810280, -2.25724282665 28
-3.84253186900, 0.19163518404, -1.02851443763 29
-3.97503296793, 0.13092106900, -2.97094842197 30
-10.73258901341, 0.10012366121, -0.43749489289 81
-5.56504615510, 0.17612773382, 0.28844298702 42
-7.81756483693, 0.11621348339, 1.80635069904 59
-9.01007472731, 0.10655423678, 2.41051897456 68
-5.96254945190, 0.22714624988, 2.46326057758 45
-8.34756923265, 0.10984306088, -2.45504679759 63
-7.68506373800, 0.13243362904, -2.76186278196 58
-6.36005274869, 0.11617537827, 2.58960260731 48
-3.57752967114, 0.07369558981, 2.85910228454 27
-6.62505494655, 0.30222272380, -1.83676731091 50
-6.75755604548, 0.23655261244, -2.62227651376 51
CC 0.2982503700 0.8502747577 2 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932complementg50hi
0.98628906109 -- Loading dLOD
asymmetric
0.00105157955 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
0.27676443679:delB:
0.00000000000:asym:
0.04394960894:ann1:
-1.85004499918:ann2:
-0.13490821227:sem1:
0.91129582427:sem2:
0.18633782086:IR:
0.00001985921 :mA:
0.00083913093 :mP:
0.00849572988 :shiftT:
-0.35509573795 :init:
---- Tidal ----
9.10846048884, -0.03313438561 1
29.53063067604, -0.04234383104 2
27.09267692660, 0.28817787536 3
7.08840411067, 0.73827950605 4
6.85248390316, -0.09878129268 5
13.60611040750, -1.40646478143 6
13.66083077700, 0.11884302839 7
3396.73824406533, -2.24417729109 8
9.12068919638, 0.01365917377 9
13.77727494300, -0.06949521454 10
6793.47648813065, -0.02157438285 11
27.55454988600, 0.02972653118 12
27.66676714572, 0.97742935808 13
27.44323926226, 0.01201587445 14
1616.30271425126, 3.12710777683 15
6.85940288609, -0.02034156743 16
7.09580797149, 0.01210102496 17
9.55688260544, 0.18050491371 18
9.13295078376, -0.02192367861 19
2190.35004466729, -0.01189414818 20
27.21222081500, -0.00790584777 21
9.18484996200, 0.20276966680 22
14.76531533802, 0.00126782430 23
31.81203820586, 0.00167081957 24
9.54345712299, -2.87556396086 25
13.63341568476, 0.00399988460 26
26.98505934729, 1.34179743917 27
365.24996603911, 0.00234932572 28
182.62498301955, -3.70471381962 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
-0.00407446588 :K0:
-1.32641018136 :level:
0.09987932410, 3.54995516610, 1.62643374906 1
0.19975864820, 3.53111209601, -1.56114080064 2
0.29963797230, 3.34221843701, 1.75054799013 3
0.39951729640, 3.48340293468, -1.56078185912 4
0.49939662050, 3.19272328402, 1.67582107296 5
0.59927594460, 3.00852127376, -1.39843119173 6
0.69915526870, 2.95520701552, 1.58664562684 7
0.79903459280, 3.71287998415, -1.41082002323 8
0.89891391690, 2.83546971161, 1.77201812936 9
0.99879324100, 2.71389187742, -1.64472962291 10
1.09867256510, 2.85549568470, 1.84520810893 11
1.19855188920, 2.47065722601, -1.24140997176 12
1.29843121330, 2.38985417852, 1.51207931446 13
1.39831053740, 2.78125273363, -1.37543866645 14
1.49818986150, 1.74341783376, 1.65848673977 15
1.59806918560, 1.99460638231, -1.66644848157 16
1.69794850970, 2.62530448164, 1.67002051300 17
1.79782783380, 1.28917694917, -1.29948378019 18
1.89770715790, 2.41211121699, 1.52725953757 19
1.99758648200, 2.18453322076, -1.54577231267 20
2.09746580610, 1.51026444955, 1.48415457288 21
2.19734513020, 1.84102344017, -1.76264343461 22
2.29722445430, 2.14973189359, 1.57118495231 23
2.39710377840, 1.52034070476, -1.73671728137 24
2.49698310250, 2.23246460356, 1.30715892293 25
2.59686242660, 1.84398306129, -1.66659688645 26
2.69674175070, 1.91215069223, 1.46107636601 27
2.79662107480, 1.75250887145, -1.78821376530 28
2.89650039890, 1.82203107832, 1.71606282411 29
2.99637972300, 1.82344150198, -1.47293902192 30
3.09625904710, 1.46985121698, 1.48525092288 31
3.19613837120, 1.48081882553, -1.43070225141 32
3.29601769530, 1.31257118928, 1.76396128266 33
3.39589701940, 1.41713547034, -1.37522449399 34
3.49577634350, 1.44957509925, 1.65184609322 35
3.59565566760, 1.37721206644, -1.28569272854 36
3.69553499170, 1.08939955208, 1.83008316140 37
3.79541431580, 1.13143119880, -1.46607098312 38
3.89529363990, 0.90459467096, 2.06998980821 39
3.99517296400, 0.63599996371, -1.09484497632 40
4.09505228810, 1.00550675388, 1.84821156211 41
4.19493161220, 0.48891855988, -1.11535834691 42
4.29481093630, 0.27076473667, 2.24762803511 43
4.39469026040, 0.64652779980, -1.70028751868 44
4.49456958450, 0.81209906106, 2.37224685907 45
4.59444890860, 0.25056918878, -1.51967936795 46
4.69432823270, 0.45968070861, 2.51604284752 47
4.79420755680, 0.50443521997, -0.64596509192 48
4.89408688090, 0.19122395653, -2.65501397850 49
4.99396620500, 0.46004020114, -0.37262621450 50
5.09384552910, 0.42326011773, -3.00338120360 51
CC 0.3688044235 0.8157653268 4 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ......\GeoEnergyMath\io\backup.bat nino4_cal_1932_asym
0.00105157955 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
-9.30995553002:delA:
0.27676443679:delB:
0.00000000000:asym:
0.04394960894:ann1:
-1.85004499918:ann2:
-0.13490821227:sem1:
0.91129582427:sem2:
0.00007763296:year:
0.18633782086:IR:
0.00001985921 :mA:
0.00083913093 :mP:
0.00849572988 :shiftT:
-0.35511457445 :init:
---- Tidal ----
9.10846048884, -0.03313438561 1
29.53063067608, -0.04234383104 2
27.09267692660, 0.28817787536 3
7.08840411068, 0.73827950605 4
6.85248390316, -0.09878129268 5
13.60611040750, -1.40646478143 6
13.66083077700, 0.11884302839 7
3396.73824406533, -2.24417729109 8
9.12068919638, 0.01365917377 9
13.77727494300, -0.06949521454 10
6793.47648813065, -0.02157438285 11
27.55454988600, 0.02972653118 12
27.66676714572, 0.97742935808 13
27.44323926226, 0.01201587445 14
1616.30271425126, 3.12710777683 15
6.85940288609, -0.02034023347 16
7.09580797150, 0.01210102496 17
9.55688260545, 0.18050491371 18
9.13295078376, -0.02192367861 19
2190.35004466729, -0.01189414818 20
27.21222081500, -0.00790584777 21
9.18484996200, 0.20273800392 22
14.76531533804, 0.00126792208 23
31.81203820595, 0.00167065961 24
9.54345712300, -2.87556396086 25
13.63341568476, 0.00399988460 26
26.98505934729, 1.34179743917 27
365.24996603296, 0.00234932572 28
182.62498301648, -3.70471381962 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
-0.00598712530 :K0:
-0.63555922004 :level:
0.09980596746, 1.81764897563, 1.57604201210 1
0.19961193492, 2.17060719185, -1.64922276651 2
0.29941790238, 1.76153745353, 1.97322818075 3
0.39922386984, 1.52211287808, -1.67630229801 4
0.49902983730, 2.42834437392, 1.66005434533 5
0.59883580476, 1.59565828184, -1.01971685545 6
0.69864177222, 1.27365496061, 0.98060960672 7
0.79844773968, 3.12079131541, -1.37005661548 8
0.89825370713, 1.33962608766, 2.38206915240 9
0.99805967459, 1.52971977539, -2.32161146404 10
1.09786564205, 2.59854769064, 1.89108931786 11
1.19767160951, 1.21013911429, -0.29786031014 12
1.29747757697, 1.67685629982, 0.79797838456 13
1.39728354443, 2.42188679372, -1.20052115296 14
1.49708951189, 0.70371729613, -2.84936272638 15
1.59689547935, 1.68978857321, -2.19329777422 16
1.69670144681, 2.08040305178, 1.83672673730 17
1.79650741427, 0.81026161721, 0.93053321809 18
1.89631338173, 1.85212562269, 1.16740032337 19
1.99611934919, 1.62867021278, -1.16839561032 20
2.09592531665, 0.13407664394, -0.16366430090 21
2.19573128411, 1.55498525320, -2.08109983912 22
2.29553725157, 1.38326685258, 1.80320041242 23
2.39534321903, 0.47620395342, -2.05698975753 24
2.49514918649, 1.65207715464, 1.05280593157 25
2.59495515394, 1.00919342126, -1.43805522936 26
2.69476112140, 1.25921415096, 1.37882287659 27
2.79456708886, 1.04553520841, -2.20650556346 28
2.89437305632, 1.02142213506, 1.81111791121 29
2.99417902378, 1.27850057844, -1.39564526939 30
3.09398499124, 0.57367149239, 1.27158352429 31
3.19379095870, 1.01217193689, -1.56702295310 32
3.29359692616, 1.04281006893, 1.88790233178 33
3.39340289362, 0.42403359212, -1.37265358737 34
3.49320886108, 1.11224487900, 1.46863398245 35
3.59301482854, 1.10481472491, -1.02962194931 36
3.69282079600, 0.33996451194, 2.23818996306 37
3.79262676346, 1.11420162347, -1.84005095773 38
3.89243273092, 0.67286848475, 2.42734800941 39
3.99223869838, 0.13459135032, 0.22010882776 40
4.09204466584, 1.11785840621, 1.51784848452 41
4.19185063330, 0.31254998101, -0.53034937778 42
4.29165660075, 0.15915585480, -1.22308798131 43
4.39146256821, 0.81554480357, -1.89047894108 44
4.49126853567, 0.73287819493, 2.68835649123 45
4.59107450313, 0.22212840547, -3.10250479336 46
4.69088047059, 0.49607640464, 2.10022695670 47
4.79068643805, 0.56217937852, -0.37214671821 48
4.89049240551, 0.09842800660, -1.22077435320 49
4.99029837297, 0.29418832935, -0.62056524213 50
5.09010434043, 0.61529539616, -2.98381281289 51
CC 0.6772565480 0.8215197156 8 1
0.00000000000:dLOD:Main exiting, flushing other tasks
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932_asymB
This is Darwin not NINO4 !
look back at several
0.00105141465 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
0.27676443679:delB:
0.00000000000:asym:
0.04447530791:ann1:
-1.97599682784:ann2:
-0.18046090942:sem1:
0.93286603688:sem2:
0.00007763296:year:
0.18631984256:IR:
0.00001980902 :mA:
0.00084004136 :mP:
0.00849572988 :shiftT:
-0.36117932984 :init:
---- Tidal ----
9.10846048884, -0.03313987487 1
29.53063067608, -0.04234243701 2
27.09267692660, 0.28817787536 3
7.08840411068, 0.73827950605 4
6.85248390316, -0.09878129268 5
13.60611040750, -1.40646478143 6
13.66083077700, 0.11884302839 7
3396.73824406533, -2.24417729109 8
9.12068919638, 0.01366001154 9
13.77727494300, -0.06941783373 10
6793.47648813065, -0.02157509647 11
27.55454988600, 0.02973310694 12
27.66676714572, 0.97742935808 13
27.44323926226, 0.01201587445 14
1616.30271425126, 3.12710777683 15
6.85940288609, -0.02078710531 16
7.09580797150, 0.01210102496 17
9.55688260545, 0.18047285607 18
9.13295078376, -0.02192644227 19
2190.35004466729, -0.01177552371 20
27.21222081500, -0.00776355529 21
9.18484996200, 0.20273800392 22
14.76531533804, 0.00125084282 23
31.81203820595, 0.00154905655 24
9.54345712300, -2.60976211007 25
13.63341568476, 0.00402659275 26
26.98505934729, 1.33392345166 27
365.24996603296, 0.00235035792 28
182.62498301648, -3.71782912915 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
-0.00619765382 :K0:
-0.60022125702 :level:
0.09980596746, 2.01529059971, 1.43600512594 1
0.19961193492, 2.41797814593, -1.50109780626 2
0.29941790238, 1.64613547279, 2.02008672727 3
0.39922386984, 1.70982577067, -1.72937182333 4
0.49902983730, 2.68510824997, 1.75300850504 5
0.59883580476, 1.48754187112, -0.89162875201 6
0.69864177222, 1.42516896663, 0.94664531500 7
0.79844773968, 3.27780159972, -1.30389008891 8
0.89825370714, 1.25947552992, 2.56900321587 9
0.99805967460, 1.53008471850, -2.36677719633 10
1.09786564206, 2.80501522592, 1.92107742518 11
1.19767160952, 1.21268682353, -0.02841390186 12
1.29747757698, 1.66600659101, 0.74720207451 13
1.39728354444, 2.47686331268, -1.21566256418 14
1.49708951190, 0.96373860097, -2.60369699906 15
1.59689547936, 1.73366762486, -2.34164528507 16
1.69670144682, 2.09046615168, 1.83402816176 17
1.79650741428, 1.00973770449, 0.98711390954 18
1.89631338174, 1.80145822296, 0.98261110895 19
1.99611934920, 1.63884966529, -1.26297400253 20
2.09592531666, 0.23035443818, -1.30475543272 21
2.19573128412, 1.66584014278, -2.30974379492 22
2.29553725158, 1.33512716170, 1.64617684202 23
2.39534321904, 0.37204001067, -2.06302638740 24
2.49514918650, 1.75641788178, 0.79907742178 25
2.59495515396, 1.08378103642, -1.57406138001 26
2.69476112142, 1.19048401930, 1.29650469338 27
2.79456708888, 1.17221673819, -2.50081787665 28
2.89437305634, 1.17532361329, 1.59773110403 29
2.99417902380, 1.25467150284, -1.48778607953 30
3.09398499126, 0.67339106176, 0.87064939723 31
3.19379095872, 1.21562314856, -1.71289645354 32
3.29359692618, 1.11683347968, 1.77401393069 33
3.39340289364, 0.43479549933, -1.83995052516 34
3.49320886110, 1.37722762278, 1.41016089161 35
3.59301482856, 1.16540557978, -1.16033711683 36
3.69282079602, 0.30702734886, 2.00803323815 37
3.79262676348, 1.31199131063, -1.87185325610 38
3.89243273094, 0.72155194585, 2.37983877674 39
3.99223869840, 0.12313312189, -0.10540879772 40
4.09204466586, 1.18936760649, 1.42311804055 41
4.19185063332, 0.40827422803, -0.49486017748 42
4.29165660078, 0.16738442687, -1.15930740732 43
4.39146256824, 0.88406369212, -1.95750372435 44
4.49126853570, 0.76513329756, 2.61121415712 45
4.59107450316, 0.19427875880, -2.95127499296 46
4.69088047062, 0.51175891481, 1.87181610535 47
4.79068643808, 0.60263540463, -0.40781640437 48
4.89049240554, 0.06173236778, -1.30039532792 49
4.99029837300, 0.29709967839, -0.72147149571 50
5.09010434046, 0.61292002592, 3.12626643720 51
CC 0.7222814575 0.8318210089 5 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932_asymCdarwin
0.0010496313 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
0.27676443679:delB:
0.07009968695:ann1:
-2.17948488119:ann2:
-0.22999188805:sem1:
0.93772318879:sem2:
0.00007752966:year:
0.09034565281:IR:
0.00001984331 :mA:
0.00084196565 :mP:
0.00849572988 :shiftT:
-0.38952597550 :init:
---- Tidal ----
9.10846048884, -0.03315544974 1
29.53063067676, -0.04242138392 2
27.09267692660, 0.28817389277 3
7.08840411076, 0.73827950605 4
6.85248390316, -0.09877732572 5
13.60611040750, -1.40646478143 6
13.66083077700, 0.11930259016 7
3396.73824406533, -2.24417729109 8
9.12068919638, 0.01365630221 9
13.77727494300, -0.06938001619 10
6793.47648813065, -0.02158383766 11
27.55454988600, 0.02973822827 12
27.66676714572, 0.97742935808 13
27.44323926226, 0.01202994090 14
1616.30271425126, 3.12697679050 15
6.85940288609, -0.02156989146 16
7.09580797157, 0.01209894291 17
9.55688260559, 0.18044299840 18
9.13295078376, -0.02193047228 19
2190.35004466729, -0.01174072854 20
27.21222081500, -0.00893742306 21
9.18484996200, 0.20269709630 22
14.76531533838, 0.00068204259 23
31.81203820752, 0.00152179307 24
9.54345712314, -2.43636775112 25
13.63341568476, 0.00402388866 26
26.98505934729, 1.21412821361 27
365.24996592966, 0.00247722873 28
182.62498296483, -3.65051371000 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
-0.00584055086 :K0:
-1.08011438998 :level:
0.09981874112, 3.39013397773, 1.50752665750 1
0.19963748224, 3.59478464846, -1.39030396740 2
0.29945622336, 2.60115088190, 1.91790726516 3
0.39927496449, 3.05997494299, -1.45628685823 4
0.49909370561, 3.60612679543, 1.92417487226 5
0.59891244673, 2.21066500657, -0.96249546521 6
0.69873118785, 2.52454933435, 1.51402394013 7
0.79854992897, 3.82240890055, -1.03821471434 8
0.89836867009, 1.98109875617, 2.34507517106 9
0.99818741121, 2.18943595005, -1.65863142963 10
1.09800615234, 3.30416443673, 2.16964189269 11
1.19782489346, 1.42312002653, -0.49802053825 12
1.29764363458, 2.19497675208, 1.45797918030 13
1.39746237570, 2.81720959691, -0.95367769464 14
1.49728111682, 0.83731436208, 2.78005701953 15
1.59709985794, 2.11645825098, -1.65264773889 16
1.69691859907, 2.51250779845, 2.17211632934 17
1.79673734019, 0.54010816727, 0.11662743863 18
1.89655608131, 2.10023203422, 1.71720793441 19
1.99637482243, 2.24864192037, -0.89820509227 20
2.09619356355, 0.60015261512, 2.04134787683 21
2.19601230467, 1.91334555245, -1.49466573941 22
2.29583104579, 1.89985325075, 2.12622721118 23
2.39564978692, 0.97130803966, -1.08272543715 24
2.49546852804, 2.08387473969, 1.57011428086 25
2.59528726916, 1.81827938929, -0.95679820676 26
2.69510601028, 1.58741538226, 2.01209919715 27
2.79492475140, 1.53756900401, -1.64042953727 28
2.89474349252, 1.83013479202, 2.23949944210 29
2.99456223364, 1.54382024764, -0.76738714406 30
3.09438097477, 1.19102350549, 1.83387888874 31
3.19419971589, 1.64451986675, -0.96697750862 32
3.29401845701, 1.37724492603, 2.58988474686 33
3.39383719813, 1.05744142095, -0.97857488839 34
3.49365593925, 1.90229417191, 2.38409761877 35
3.59347468037, 1.54647224880, -0.41585301013 36
3.69329342149, 0.91066235429, 2.60565979810 37
3.79311216262, 1.71851495340, -0.78968832977 38
3.89293090374, 1.02758563837, 3.12009407490 39
3.99274964486, 0.62786247906, -0.37262719333 40
4.09256838598, 1.53743380251, 2.64989763852 41
4.19238712710, 0.73575851957, 0.25129856456 42
4.29220586822, 0.19836771167, 3.05264003637 43
4.39202460935, 0.91140416546, -0.48638806433 44
4.49184335047, 0.94024153484, -2.59572626987 45
4.59166209159, 0.12431164218, -1.00363141894 46
4.69148083271, 0.69946665370, -2.89953281298 47
4.79129957383, 0.64575603285, 0.85240758125 48
4.89111831495, 0.16090383937, -1.72089968592 49
4.99093705607, 0.44552954129, 0.60263598067 50
5.09075579720, 0.68765915863, -2.01567672356 51
CC 0.2858955829 0.8429492272 2 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932_asymDdarwin
NINO4
0.00104963130 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
-9.31121610513:delA:
0.00000000000:asym:
0.06998231866:ann1:
-2.17948488119:ann2:
-0.22842643082:sem1:
0.93772318879:sem2:
0.00007751974:year:
0.08627095215:IR:
0.00001985728 :mA:
0.00085818586 :mP:
0.00849572988 :shiftT:
-0.38952597550 :init:
---- Tidal ----
9.10846048884, -0.03315544974 1
29.53063067682, -0.04212385975 2
27.09267692660, 0.28004518768 3
7.08840411076, 0.73827449608 4
6.85248390316, -0.09877732572 5
13.60611040750, -1.40646478143 6
13.66083077700, 0.12079999396 7
3396.73824406533, -2.24417729109 8
9.12068919638, 0.01365486871 9
13.77727494300, -0.06937801338 10
6793.47648813065, -0.02158383766 11
27.55454988600, 0.02973822827 12
27.66676714572, 0.97742935808 13
27.44323926226, 0.01201189925 14
1616.30271425126, 3.12697679050 15
6.85940288609, -0.02110156266 16
7.09580797158, 0.01208833242 17
9.55688260560, 0.18044299840 18
9.13295078376, -0.02193047228 19
2190.35004466729, -0.01169894039 20
27.21222081500, -0.00893739533 21
9.18484996200, 0.20263114011 22
14.76531533841, 0.00068204259 23
31.81203820767, 0.00151757637 24
9.54345712315, -2.45502812002 25
13.63341568476, 0.00397222799 26
26.98505934729, 1.18901994942 27
365.24996591974, 0.00246308692 28
182.62498295987, -3.65051371000 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
-0.00824272629 :K0:
-3.34498894258 :level:
0.09981874112, 5.67782980020, 2.42705619868 1
0.19963748224, 4.70348355198, 0.04062072901 2
0.29945622336, 3.27051156147, -2.63675023742 3
0.39927496448, 4.49956532358, 0.90977845892 4
0.49909370560, 5.88762484749, -1.41574272354 5
0.59891244672, 6.08764052914, 2.57361819394 6
0.69873118784, 5.34301334404, 0.26505031899 7
0.79854992896, 4.31480533809, -2.10940122471 8
0.89836867008, 3.49624970341, 1.42776304038 9
0.99818741120, 4.20950562560, -1.24264612528 10
1.09800615232, 5.35356582351, 2.67087190030 11
1.19782489344, 5.32542113573, 0.42629949803 12
1.29764363456, 4.73683298325, -1.89161332507 13
1.39746237568, 3.56277258805, 1.97240552917 14
1.49728111680, 3.26920446083, -0.70779275386 15
1.59709985792, 3.51978026500, 2.92667120985 16
1.69691859904, 4.48225449024, 0.53924679943 17
1.79673734016, 4.52645975625, -1.71726105528 18
1.89655608128, 3.79825416976, 2.32357011728 19
1.99637482240, 2.64035187591, -0.18225950394 20
2.09619356352, 2.62173906796, -2.95710804930 21
2.19601230464, 3.04885837653, 0.71691723325 22
2.29583104576, 3.66926067615, -1.62011884391 23
2.39564978688, 3.69099139572, 2.48684297020 24
2.49546852800, 2.88183494879, 0.31886548957 25
2.59528726912, 1.86098719490, -2.22553480955 26
2.69510601024, 1.28164371686, 1.06264406165 27
2.79492475136, 2.11988052585, -1.59824477758 28
2.89474349248, 2.62757549335, 2.43318139575 29
2.99456223360, 2.73803119439, 0.39196936364 30
3.09438097472, 2.07350043147, -1.80310302155 31
3.19419971584, 1.20811371248, 2.04274790414 32
3.29401845696, 0.64271661447, -1.27838893070 33
3.39383719808, 1.34498822288, 2.37960648495 34
3.49365593920, 1.87503888346, 0.20810267477 35
3.59347468032, 2.03870769282, -1.74871673417 36
3.69329342144, 1.54623304543, 2.30380343548 37
3.79311216256, 0.90045747726, 0.09415636023 38
3.89293090368, 0.37751670335, 2.85760261394 39
3.99274964480, 0.60582347905, 0.22675849503 40
4.09256838592, 1.09716027314, -2.02290167757 41
4.19238712704, 1.24325542508, 2.23296718023 42
4.29220586816, 1.02355556387, 0.21012351018 43
4.39202460928, 0.37895055591, -1.42924494475 44
4.49184335040, 0.19975583177, 0.70603284380 45
4.59166209152, 0.02896110658, -1.07082971554 46
4.69148083264, 0.34628091689, 1.87566810607 47
4.79129957376, 0.64655052802, -0.04550507833 48
4.89111831488, 0.70376118632, -1.94833081034 49
4.99093705600, 0.28095349674, -3.12625391393 50
5.09075579712, 0.23337197261, 0.00434626663 51
CC 0.7153489470 0.8257949114 6 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932_asymDNINO
--
0.00104760864 :offset:
0.00000000000 :bg:
0.00000000000 :impA:
0.00000000000 :impB:
0.00000000000 :impC:
0.27676443679:delB:
0.00000000000:asym:
0.13300645729:ann1:
-0.71800926745:ann2:
-0.04129180419:sem1:
1.20472447610:sem2:
0.00007727210:year:
-0.00548807912:IR:
0.00002041889 :mA:
0.00085557542 :mP:
0.00849662435 :shiftT:
-0.51403120034 :init:
---- Tidal ----
9.10846048884, -0.03318136646 1
29.53063067844, -0.04271670865 2
27.09267692660, 0.28004450091 3
7.08840411095, 0.73827449608 4
6.85248390316, -0.09877393429 5
13.60611040750, -1.40646478143 6
13.66083077700, 0.11976940953 7
3396.73824406533, -2.24414999474 8
9.12068919638, 0.01366373525 9
13.77727494300, -0.06938157565 10
6793.47648813065, -0.02158389831 11
27.55454988600, 0.02974934138 12
27.66676714572, 0.97742935808 13
27.44323926226, 0.01222617434 14
1616.30271425126, 3.12717070763 15
6.85940288609, -0.02122671885 16
7.09580797177, 0.01208207544 17
9.55688260594, 0.18044155018 18
9.13295078376, -0.02192471809 19
2190.35004466729, -0.01114976196 20
27.21222081500, -0.00876081992 21
9.18484996200, 0.20308233813 22
14.76531533922, 0.00059284880 23
31.81203821143, 0.00115775801 24
9.54345712349, -1.72567707538 25
13.63341568476, 0.00367054576 26
26.98505934729, 1.21926735532 27
365.24996567210, 0.00217514262 28
182.62498283605, -3.54183601976 29
---- LTE ----
0.00000000000 :trend:
0.00000000000 :accel:
-0.01233521384 :K0:
-0.10652551822 :level:
0.09982431766, 1.43024492534, -1.40834289589 1
0.19964863532, 1.39254757774, -3.06684330451 2
0.29947295298, 1.20132348170, 1.13310635552 3
0.39929727064, 0.54036503956, -1.83851212176 4
0.49912158830, 0.57360158439, 1.27810132799 5
0.59894590596, 0.79013511808, -1.60577146167 6
0.69877022362, 1.92508633796, 2.86444391611 7
0.79859454128, 2.40126821439, 1.08824244498 8
0.89841885894, 1.80556835895, -0.50776557617 9
0.99824317660, 0.73964593796, -1.81000515981 10
1.09806749426, 0.93221287117, -1.98910118410 11
1.19789181192, 1.69006172197, 2.87042558439 12
1.29771612958, 2.24189309904, 0.97864881323 13
1.39754044724, 2.49415665213, -0.82616571489 14
1.49736476490, 2.00457472850, -2.47437079189 15
1.59718908256, 1.18024702242, 2.42923584455 16
1.69701340022, 1.40460609899, 2.11573144304 17
1.79683771788, 2.39323578183, 0.77074386899 18
1.89666203554, 2.71619350728, -0.85933572629 19
1.99648635320, 2.63623466905, -2.62447861748 20
2.09631067086, 1.81174199587, 1.93783909664 21
2.19613498852, 1.25032265412, 0.72457925059 22
2.29595930618, 1.51243846649, -0.10795723610 23
2.39578362384, 2.45911430081, -1.23154052870 24
2.49560794150, 2.91104532632, -2.84081578424 25
2.59543225916, 2.51584143100, 1.76605123704 26
2.69525657682, 1.97361144237, 0.16632724486 27
2.79508089448, 1.01835192288, -1.29953061277 28
2.89490521214, 0.96361958198, -2.16587536150 29
2.99472952980, 1.67348344585, 3.06926856466 30
3.09455384746, 2.29952869360, 1.42033403510 31
3.19437816512, 2.20105717861, -0.21940644403 32
3.29420248278, 1.68156957729, -1.69817353495 33
3.39402680044, 0.93378948793, -3.13788776358 34
3.49385111810, 0.58444155805, 2.62738208885 35
3.59367543576, 1.08399967697, 1.42787176406 36
3.69349975342, 1.60788289755, -0.73488610668 37
3.79332407108, 1.58659285247, -2.32322009646 38
3.89314838874, 1.24053894883, 2.64435141811 39
3.99297270640, 0.79154973596, 1.28572384394 40
4.09279702406, 0.59242505740, 0.94989423905 41
4.19262134172, 0.59818596310, -0.48358098143 42
4.29244565938, 0.75721039745, -2.43991122347 43
4.39226997704, 0.86734716693, 2.11029922784 44
4.49209429470, 0.69511006651, 0.65071660362 45
4.59191861236, 0.72403037593, -0.73891291441 46
4.69174293002, 0.20313360293, -1.22871355461 47
4.79156724768, 0.43353788532, -2.07288625539 48
4.89139156534, 0.43735536450, 1.82913605057 49
4.99121588300, 0.25246550909, 0.63871857600 50
5.09104020066, 0.51829592876, -1.63326362171 51
CC 0.7217478456 0.8958088256 5 1
0.00000000000:dLOD:
PS C:\Users\pp\github\pukpr\GEM2\GeoEnergyMath\eqlong> ..\..\..\GeoEnergyMath\io\backup.bat nino4_cal_1932_asymgNINO
0.99236505872 -- Loading dLOD













0.99362486721 -- Loading dLOD
0.99368602714 -- Loading dLOD
Higher freq LTE
single high freq LTE
0.99301048504 -- Loading dLOD