forked from SHYFEM-model/shyfem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LOG
4342 lines (3548 loc) · 112 KB
/
LOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
19.07.2019
c ./fem3d/elab_nc_dummy.f:
! 17.07.2019 ggu error in calling nc_output_record()
c
c ./fem3d/subshyutil.f:
! 12.07.2019 ggu some comments for shy_write_scalar_record()
!
c ./fem3d/subn11.f:
c 04.07.2019 ggu setweg & setznv introduced before make_new_depth
c
c ./fem3d/femelab1.f:
! 17.07.2019 ggu changes to custom_elab()
c
c ./fem3d/subsrt.f:
c 02.07.2019 ggu new routines for indirect real sort, locater_all()
c 05.07.2019 ggu new routine create_permutation()
c
c ./fem3d/suboff.f:
c 04.07.2019 ggu solved problem for vertical velocity (1 index off)
c
c ./fem3d/new3di.f:
c 04.07.2019 ccf for offline also compute horizontal diffusion params
c 16.07.2019 ggu rmsdiff was not set to 0 (bug)
c
c ./fem3d/subfifo.f:
! 04.07.2019 ggu written from scratch
c ./fem3d/subww3.f:
! 04.07.2019 ggu written from scratch
c ./fem3d/bio3d.f:
c 12.07.2019 ggu 2d output done with shy_write_scalar_record2d()
c
c ./fem3d/tselab1.f:
! 12.07.2019 ggu -date0 takes precedence with internal date
c
c ./fem3d/shyfem.f:
c 04.07.2019 ggu new ww3 routines introduced
c
c ./fem3d/subsys.f:
c 04.07.2019 ggu new description for WW3
c
c ./fem3d/subshy.f:
! 12.07.2019 ggu some changes to shy_info()
02.07.2019
c ./fem3d/subfvl.f:
c 01.07.2019 ggu not writing file anymore
c
c ./fem3d/new3di.f:
c 02.07.2019 ggu switched completely to penta solver
21.05.2019
c ./femplot/colutils.f:
! 13.03.2019 ggu changed VERS_7_5_61
c ./femplot/suplin.f:
c 16.05.2019 ggu wrong call to insert_between_layers()
c
c ./femplot/supiso.f:
c 14.03.2019 ggu allow for plotting constant element value
c
c ./fem3d/rstinf.f:
! 03.05.2019 ggu adapted
c
c ./fem3d/elab_nc.f:
! 14.05.2019 ggu changes in nc_output_record()
! 16.05.2019 ggu new aux variable to write nc_records (rncaux)
! 16.05.2019 ggu also hydro output fixed
c
c ./fem3d/femelab1.f:
! 24.04.2019 ggu write also fem file for extracted node
! 24.04.2019 ggu correct regpar if lon > 180
c
c ./fem3d/subreg.f:
c 14.05.2019 ggu in fm_extra_setup() use double precision
c
c ./fem3d/shyelab_output.f:
! 14.05.2019 ggu for nc_output use interpolated values, allow ivar=1
! 16.05.2019 ggu write regular grid information
!
c ./fem3d/subclo.f:
! 15.05.2019 ggu nicer error reporting
!
c ./fem3d/new3di.f:
c 16.04.2019 ggu introduced rcomputev for excluding elements (rcomp)
c
c ./fem3d/mod_arrays.f:
! 14.03.2019 ggu written from scratch
! 12.04.2019 ggu added double precision
c ./fem3d/rst2shy.f:
! 03.05.2019 ggu written from rstinf.f
c
c ./fem3d/gotm3d.f:
! 13.03.2019 ggu changed VERS_7_5_61
c ./fem3d/elab_regular.f:
! 16.05.2019 ggu new routine fem_reg_print()
c
c ./fem3d/bc2fem.f:
! 13.03.2019 ggu changed VERS_7_5_61
c
c ./fem3d/tselab1.f:
! 15.05.2019 ggu new option -date0
! 16.05.2019 ggu use sdate0 for date string
c
c ./fem3d/subcus.f:
c 16.04.2019 ggu small changes in close_inlets1() (bfill)
c
c ./fem3d/shyelab_extract.f:
! 24.04.2019 ggu written from scratch
!
c ./fem3d/nc2fem.f:
! 23.04.2019 ggu bug fix in parse_strings - n was changed
!
c ./fem3d/subrst.f:
! 03.05.2019 ggu return iconz in rst_skip_record()
! 03.05.2019 ggu new routine to check if rst file (rst_is_rst_file)
!
c ./fem3d/netcdf.f:
c 14.05.2019 ggu wrong definition of dimensions in nc_write_data_3d_reg
c 16.05.2019 ggu new version of nc_rewrite_3d_reg(), new nc_set_quiet()
c
c ./fem3d/mod_internal.f:
! 11.04.2019 ggu added rcomputev
c ./fem3d/subdef.f:
c 03.05.2019 ggu new routines to get extension and name
c
c ./fem3d/newclose.f:
! 14.03.2019 ggu re-written for new framework
! 12.04.2019 ggu first finished draft
! 17.04.2019 ggu tested on old venlag62
!
c ./fem3d/subwrt.f:
c 29.04.2019 ggu fix computation for too low concentrations (climit)
c
c ./fem3d/elabutil.f:
! 15.05.2019 ggu new option -date0 (sdate0)
13.03.2019
c ./femplot/supsim.f:
c 13.03.2019 ggu in plobas use parameters from STR file
c
c ./fem3d/subnls.f:
c 12.03.2019 ggu before namelist read clean arrays
c
c ./fem3d/subn11.f:
c 06.03.2019 mbj added tramp = -2, (average, Bajo et al., 2019)
c
c ./fem3d/femelab1.f:
! 01.03.2019 ccf lmax in function of considered var (needed for split)
c
c ./fem3d/subscn.f:
! 20.02.2019 ggu bug fix in ialfa (rounding, CHRIS)
!
c ./fem3d/subpar3.f:
c 12.03.2019 ggu new routine para_clean_section(()
c
c ./fem3d/shyfem.f:
c 12.03.2019 ccf include new computation of tide potential/analysis
c
c ./fem3d/subtide.f:
! 18.02.2019 ccf inclued more constituents
!
c ./fem3d/femtide.f:
! 12.03.2019 ccf written from scratch
c
c ./fem3d/subwrt.f:
c 12.03.2019 ggu bug fix if no custom data is given (only idtwrt)
c
c ./fem3d/subsys.f:
c 13.03.2019 ggu new variables for plotting basin
c
c ./fem3d/subn35.f:
c 12.03.2019 mbj new friction ireib=10
16.02.2019
c ./fem3d/substrings.f:
! 16.02.2019 ggu populate_strings declared as recursive
!
c ./fem3d/sedi3d.f:
! 15.02.2019 ccf pass PHIB,PHI100 into nonco (bug)
14.02.2019
c ./fem3d/debug.f:
c 02.02.2019 ggu new routines is_inf, is_nonumber, adjourned is_nan
c
c ./fem3d/sedi3d.f:
! 03.02.2019 ggu adjust z0 etc (GGUZ0)
! 05.02.2019 ggu upgraded to new version from chris
! 14.02.2019 ggu set negative conz values to 0
c
c ./fem3d/newcon_omp.f:
c 01.02.2019 ggu bug fix for conz==0 with negative loading
c 14.02.2019 ggu bug fix for conz<0 with negative loading
c
c ./fem3d/subboxa.f:
c 07.02.2019 ggu code revised, easy addition of other vars
c
c ./fem3d/sedtrans05.f:
! 01.02.2019 ggu loop 220 in sub depos cleaned
! 03.02.2019 ggu sanity checks (GGUZ0)
! 14.02.2019 ggu more sanity checks (GGUZ0)
c
c ./fem3d/shyfem.f:
c 12.02.2019 ccf bottom shear stress in substress.f
c
c ./fem3d/shyelab_output.f:
! 10.02.2019 ggu write final message for -averbas
!
c ./fem3d/subele.f:
c 03.02.2019 ggu in setdepth check for zero layer thickness
c
c ./fem3d/newcon.f:
c 14.02.2019 ggu check for negative scalar
c
c ./fem3d/subfemintp.f:
! 07.02.2019 ggu new routine for debug on bound files
!
c ./fem3d/subgotm.f:
c 03.02.2019 ggu in gotm_shell check for 0layer and z0s/bmin (GGUZ0)
c
c ./fem3d/subtime.f:
c 09.02.2019 ggu bug fix for syncronization of last time step
c
c ./fem3d/subsys.f:
c 12.02.2019 ccf introduced ibstrs for computing the bottom stess
c
c ./fem3d/subwrt.f:
c 07.02.2019 ggu for custom reset allow iso date
c
c ./fem3d/subwaves.f:
! 01.02.2019 ggu bug fix in parwaves: do not compute H/P for wind == 0
! 10.02.2019 ggu bug fix for FPE (GGUZ0)
! 12.02.2019 ccf stress computed in substress.f
!
c ./fem3d/subdates.f:
! 13.02.2019 ggu isolated from more subroutines
18.01.2019
c ./fem3d/new3di.f:
c 18.01.2019 ggu finished implementing and testing penta solver
c
c ./fem3d/sublp.f:
c 04.01.2019 ggu linpack and blas routines transfered
21.12.2018
c ./fem3d/new3di.f:
c 19.12.2018 ggu error in experimental code with penta solver
18.12.2018
c ./hcbs/xhcbs.f:
! 29.10.2018 ggu new copyright added
!
c ./femplot/suptim.f:
c 18.12.2018 ggu inlude file substituted with module timlim
c
c ./fem3d/newnohydro.f:
c 18.12.2018 dbf&wjm adapted to last version and inserted in develop
c
c ./fem3d/newnudge.f:
c 23.11.2018 ggu new routines to read and interpolate time series
c
c ./fem3d/suboff.f:
c 12.11.2018 ggu linear arrays introduced
c
c ./fem3d/elab_off.f:
! 12.11.2018 ggu linear arrays introduced
c
c ./fem3d/intp.f:
c 23.11.2018 ggu new routines to read and interpolate time series
c
c ./fem3d/subext.f:
c 09.11.2018 ggu more general version of linear routines
c
c ./fem3d/subfemintp.f:
! 23.11.2018 ggu new routines to read and interpolate time series
! 23.11.2018 ggu some sanity checks
!
c ./fem3d/sub2linear.f:
! 09.11.2018 ggu written from scartch
! 11.11.2018 ggu some bug fixes, extension to double
! 12.11.2018 ggu utility routines for easy reading/writing
!
c ./fem3d/subshy.f:
! 09.11.2018 ggu linear routines implemented for compiler warning
!
c ./post/colorbar.f:
! 29.10.2018 ggu new copyright added
25.10.2018
c ./femplot/plotutil.f:
! 19.10.2018 ccf handle lgr files
!
c ./fem3d/shybas.f:
c 25.10.2018 ccf grid output in gr3 and msh formats
c
c ./fem3d/elab_nc.f:
! 25.10.2018 ccf write field already on regular grid
c
c ./fem3d/subgrd.f:
c 25.10.2018 ccf grid output in gr3 and msh formats
c
c ./fem3d/subrst.f:
! 25.10.2018 ggu bug fix with finding desired record
!
c ./fem3d/elabutil.f:
! 25.10.2018 ccf lagrangian options
16.10.2018
c ./fem3d/newcon_omp.f:
c 11.10.2018 ggu code adjusted for sediment deposition (negative loads)
c
c ./fem3d/subshyutil.f:
! 27.09.2018 ggu new routines for writing constant layer structure
!
c ./fem3d/subn11.f:
c 11.10.2018 ggu zconst setting adjourned
c
c ./fem3d/subqfxm5.f:
! 05.10.2018 ggu do not compute Ch and Ce (not needed, divide by 0)
c
c ./fem3d/submeteo2.f:
c 03.10.2018 ggu better output of meteo variables (output_meteo_data)
c
c ./fem3d/newcon.f:
c 11.10.2018 ggu caux substituted with load,cobs,rtauv (bug inout)
c
c ./fem3d/subtsfile.f:
c 15.10.2018 ggu set nvar=0 in ts_get_file_info() to avoid segfault
c
c ./fem3d/shyelab_nodes.f:
! 15.10.2018 ggu added option -coord (bcoord,scoord)
c
c ./fem3d/newbcl.f:
c 05.10.2018 ggu new diagnostic routine ts_dia()
c
c ./fem3d/suboutputd.f:
c 03.10.2018 ggu some instances of itanf and itend eliminated
c
c ./fem3d/debug.f:
c 05.10.2018 ggu eliminated equivalent statement
c
c ./fem3d/subdef.f:
c 05.10.2018 ggu avoid run time error in subst_extension()
c
c ./fem3d/subwrt.f:
c 05.10.2018 ggu before calling dep3dele() set nlev
31.08.2018
c ./fem3d/shyelab_proj.f:
! 20.07.2018 dbf projection routines for shyelab
c
c ./fem3d/shyelab1.f:
! 20.07.2018 dbf inserted option for projection
c
c ./fem3d/subext.f:
c 30.08.2018 ggu new version 8 to avoid implicit do
06.07.2018
c ./femplot/shyplot.f:
! 07.06.2018 pzy new module plot_fonts for font size definition
!
!
c ./femplot/supcust.f:
! 07.06.2018 ggu new file for customization from Petras
! 07.06.2018 pzy font size definitions
!
c ./fem3d/nc_tutil.f:
! 03.07.2018 ggu revision control introduced
!
c ./fem3d/subnls.f:
c 13.05.2018 ggu bug fix in nls_copy_isctable()
c
c ./fem3d/subshyutil.f:
! 24.05.2018 ccf bug fix exchanging nlvdi with nlv ($BUGNLV)
! 03.07.2018 ggu in shy_write_output_record() handle 2d arrays
!
c ./fem3d/nc_dim_coords.f:
! 03.07.2018 ggu revision control introduced
!
c ./fem3d/subn11.f:
c 01.06.2018 mbj added tramp for sea level boundary condition
c
c ./fem3d/subreg.f:
c 18.05.2018 ggu more checks on fr routines, introduced ierr, bextend
c 26.05.2018 ggu even more checks and debug output
c
c ./fem3d/shyelab_output.f:
! 24.05.2018 ccf add outformat option off
!
c ./fem3d/elab_off.f:
! 24.05.2018 ccf written from scratch
c
c ./fem3d/nc_util.f:
! 03.07.2018 ggu revision control introduced
c
c ./fem3d/newcon.f:
c 30.05.2018 ggu better debug output in conzstab (idtstb,itmstb)
c 01.06.2018 ggu stability of scalar revised - aa > 0 possible again
c 01.06.2018 ggu implicit nudging (relaxation) (ANT)
c
c ./fem3d/shyutil.f:
! 12.06.2018 ggu bug fix for area in make_aver_3d()
!
c ./fem3d/nc_domain.f:
! 03.07.2018 ggu revision control introduced
!
c ./fem3d/subfemintp.f:
! 26.05.2018 ggu bug fix in regular 2d/3d interpolation
! 06.06.2018 ggu in iff_init use dtime==-1 to not populate data
! 08.06.2018 ggu do not populate if no file (bug fix)
!
c ./fem3d/subgrd.f:
c 06.07.2018 ggu new handling of line reading routines: read_all_lines()
c
c ./fem3d/nc2fem.f:
! 03.07.2018 ggu revision control introduced
! 04.07.2018 ggu single points introduced
!
c ./fem3d/subrst.f:
! 30.05.2018 ggu some time values now in double
! 31.05.2018 ggu new version (11), all time values in double
! 28.06.2018 mbj bug fix for version 11
!
c ./fem3d/elabutil.f:
! 24.05.2018 ccf add outformat option off
! 06.06.2018 ggu new calling format of shy_write_aver()
11.05.2018
c ./fem3d/shyelab1.f:
! 11.05.2018 ggu call shympi_init later (after basin)
c
c ./fem3d/newcon_omp.f:
c 11.05.2018 ggu compute only unique nodes (needed for zeta layers)
c
c ./fem3d/subshyutil.f:
! 11.05.2018 ggu bug fix and hydro init, use global layer number
!
c ./fem3d/mod_shympi_dummy.f:
! 11.05.2018 ggu new function calls for global values and internal pointers
!
c ./fem3d/subousa.f:
c 11.05.2018 ggu mpi version working also for zeta levels
c
c ./fem3d/subnsh.f:
c 11.05.2018 ggu semi.h deleted and substituted with module
c
c ./fem3d/mod_shympi_node_internal.f:
! 11.05.2018 ggu bug fix in exchange arrays for zeta levels
!
c ./fem3d/newini.f:
c 11.05.2018 ggu new routine exchange_vertical() to compute global nlv,hlv
c
c ./fem3d/newcon.f:
c 11.05.2018 ggu compute only unique nodes (needed for zeta layers)
c
c ./fem3d/mod_shympi_node.f:
! 11.05.2018 ggu changes in global variables and exchange_arrays()
!
c ./fem3d/subn35.f:
c 26.04.2018 ggu area code adjusted for mpi
26.04.2018
c ./fem3d/subcoo.f:
c 23.04.2018 ggu new matrix type
c
c ./fem3d/subspk.f:
c 22.04.2018 ggu eliminated redundant use and variables
c 24.04.2018 ggu pass matrix into routines
c
c ./fem3d/simsys_spkmpi.f:
! 21.04.2018 ggu started with mpi version
c
c ./fem3d/basutil_part.f:
! 20.04.2018 ggu code added to check partition integrity
c
c ./fem3d/simsys_spk.f:
! 23.04.2018 ggu adapted to new matrix type (local and global matrix)
!
c ./fem3d/newcon.f:
c 23.04.2018 ggu exchange mpi inside loop for istot>1
c
c ./fem3d/mod_system.f:
! 23.04.2018 ggu new framework - introduced matrix type
19.04.2018
c ./fem3d/shypre.f:
c 13.04.2018 ggu accepts partition to write bas file with node partition
c
c ./femplot/supiso.f:
c 18.04.2018 ggu use bplot to decide what element to plot
c
c ./femplot/supout.f:
c 18.04.2018 ggu set up bkplot (node to be plotted)
c
c ./femplot/supbas.f:
c 18.04.2018 ggu use also bkplot to decide what part of boundary to plot
c
c ./fem3d/basutil.f:
! 13.04.2018 ggu new routine for partitioning
!
c ./fem3d/subshyutil.f:
! 10.04.2018 ggu prepare for mpi version (collect array and write)
! 11.04.2018 ggu bug fix and hydro write
!
c ./fem3d/shybas.f:
c 04.04.2018 ggu new code for real area (m) and explicit stability
c 04.04.2018 ggu new code for nodal partition check and write
c 13.04.2018 ggu new routine to elab partition and write to file
c
c ./fem3d/subtime.f:
c 13.04.2018 ggu hydro_stability includes explicit gravity wave
c 13.04.2018 ggu set_timestep now is working with mpi
c 16.04.2018 ggu write warning if time step is over recommended one
c
c ./fem3d/subn11.f:
c 04.04.2018 ggu initialization for zeta revised for mpi
c
c ./fem3d/basutil_part.f:
! 16.04.2018 ggu partitioning finished
c
c ./fem3d/mod_shympi_dummy.f:
! 10.04.2018 ggu adjourned with new function calls
!
c ./fem3d/subousa.f:
c 11.04.2018 ggu mpi version is ready and working
c
c ./fem3d/mod_shympi_node_internal.f:
! 10.04.2018 ggu code to exchange arrays
!
c ./fem3d/subscn.f:
! 10.04.2018 ggu ialfa now handles ndec < -1 gracefully
!
c ./fem3d/newstab.f:
c 13.04.2018 ggu re-structured, included gravity wave stability
c 16.04.2018 ggu use also ilin to compute stability
c
c ./fem3d/mod_shympi_node.f:
! 04.04.2018 ggu new routine shympi_exit
! 04.04.2018 ggu bug fix on scalar reduction (argument was changed)
! 10.04.2018 ggu code to exchange arrays
!
c ./fem3d/subwrt.f:
c 16.04.2018 ggu restructured, new computation of WRT (see WRTOLD)
c 18.04.2018 ggu restructured, some bugs fixed
c
c ./fem3d/subshy.f:
! 10.04.2018 ggu allow for file to be initialized but not opened
03.04.2018
c ./fem3d/subtime.f:
c 23.02.2018 ggu most parts converted from int to double
c 29.03.2018 ggu bug fix for syncronization step
c
c ./fem3d/subflx.f:
c 03.03.2018 ggu determine nvar for versions < 6
c
c ./fem3d/subflxa.f:
c 27.03.2018 ggu new code for generic flux handling (fluxes_generic())
c
c ./fem3d/optintp.f:
c 26.03.2018 ggu completely restructured for model driven obs
c
c ./fem3d/subtsuvfile.f:
c 25.02.2018 ggu file cleaned - time is now double
c
c ./fem3d/suboi.f:
c 26.03.2018 ggu some parameters are now arrays (sigma,rr)
22.01.2018
c ./femplot/supsim.f:
c 13.02.2018 ggu new routine for plotting boxes (plobox)
c
c ./fem3d/sedtrans05.f:
! 22.02.2018 ccf bug fix for TAUCD (wrong formula, look for TAUCD=)
c
c ./fem3d/sedi3d.f:
! 22.02.2018 ccf adjusted for new sinking velocity
c
c ./fem3d/femcombine.f:
! 30.01.2018 ggu written with new fem_util module
c
c ./fem3d/newcon.f:
c 03.02.2018 ggu sindex did not use rstol for stability
c
c ./fem3d/subboxa.f:
c 15.02.2018 ggu code checked and error debug (is running)
c
c ./fem3d/subflxu.f:
c 04.02.2018 ggu new routines with accumulator in double
c
c ./fem3d/subfemutil.f:
c 30.01.2018 ggu new routine for combining records
c
* ./grid/gridhs.c:
* 16-Feb-2018: in checking area consider LatLon *
24.01.2018
c ./fem3d/shypart.f:
C 16.12.2017 ggu started from scratch
05.12.2017
c ./fem3d/subexta.f:
c 22.11.2017 ccf write also waves and sediment concentration
c
c ./fem3d/subreg.f:
c 04.12.2017 ggu check t,u values and correct if out of bounds
c
c ./fem3d/lagrange_inout.f:
c 27.11.2017 ggu inserted code to start from lgr files
c
c ./femutil/dstruc/hash.f:
c 22.11.2017 ggu new framework finished
17.11.2017
c ./fem3d/shypre.f:
c 17.11.2017 ggu implement output switches (quiet,silent,etc..)
c
c ./fem3d/subflxa.f:
c 17.11.2017 ggu sediment output adapted to new framework
c
c ./fem3d/subiso8601.f:
! 15.11.2017 ggu better time parsing, understands UTC and Z
14.11.2017
c ./femplot/shyplot.f:
! 14.11.2017 ggu shyplot unified and simplified for output
c
c ./fem3d/shyelab.f:
c 04.11.2017 ggu new functionality tselab
c
c ./fem3d/shyproj.f:
! 08.11.2017 ggu save nodal depth for nodes without element
04.11.2017
c ./fem3d/subtime.f:
c 20.10.2017 ggu new get_absolute_act_time(),get_absolute_ref_time()
c
c ./fem3d/subnls.f:
c 26.10.2017 ggu new isctable read (multiple numbers + description)
c
c ./fem3d/weutro_wdia.f:
c 10.10.2017 dmk&laa written from scratch
c 26.10.2017 ggu integrated into main trunk
c
c ./fem3d/subexta.f:
c 20.10.2017 ggu new framework - read also table with strings
c
c ./fem3d/subn35.f:
c 03.11.2017 mbj new documentation for ireib
c
c ./fem3d/subflxa.f:
c 26.10.2017 ggu reads itable, chflx and section description
c
c ./fem3d/flxelab1.f:
c 26.10.2017 ggu various user related improvements, new flx subroutines
c
c ./fem3d/extelab1.f:
c 20.10.2017 ggu write time in string format
c 26.10.2017 ggu various user related improvements
c
c ./fem3d/suboutputd.f:
c 04.11.2017 ggu new routine init_output_i()
c
c ./fem3d/subcon1.f:
c 03.11.2017 ggu new routines to write shy files scalar_output_*()
c
c ./fem3d/subscn.f:
! 03.11.2017 ggu bug fix -> tab was char(8), restructured with module
!
c ./fem3d/subext.f:
c 20.10.2017 ggu completely restructured for version 7
09.10.2017
c ./fem3d/shyelab1.f:
! 07.10.2017 ggu new names for -split option of hydro file
c
c ./fem3d/substrings.f:
! 07.10.2017 ggu short name introduced, new generic routines
!
c ./fem3d/subclo.f:
! 09.10.2017 ggu new routine to access last file
!
c ./fem3d/shyelab_average.f:
! 07.10.2017 ggu started
c
c ./fem3d/sigmautil.f:
c 07.10.2017 ggu substitute get_bottom_of_layer with get_depth_of_layer
c
c ./fem3d/shyelab_nodes.f:
! 07.10.2017 ggu restructured
c
c ./fem3d/subgeo.f:
c 07.10.2017 ggu new routine c2p_ocean()
c
c ./fem3d/extelab1.f:
c 09.10.2017 ggu consistent treatment of output files
c
c ./fem3d/elabutil.f:
! 09.10.2017 ggu new options, more uniform treatment
05.10.2017
c ./fem3d/shyelab1.f:
! 05.10.2017 ggu implement silent option
c
c ./fem3d/subclo.f:
! 05.10.2017 ggu new routines to hide options
!
c ./fem3d/shyfem.f:
c 05.10.2017 ggu command line options introduced, subs rearranged
c
c ./fem3d/extelab1.f:
c 05.10.2017 ggu implement quiet, silent option, write dir
c
c ./fem3d/subcst.f:
c 05.10.2017 ggu cstfile called with file name
c
c ./fem3d/subnev.f:
c 05.10.2017 ggu verbose flag introduced
c
c ./fem3d/subext.f:
c 05.10.2017 ggu file 7 substituted with EXT file in output
c
c ./fem3d/elabutil.f:
! 05.10.2017 ggu options rearranged, some only for SHY file
26.09.2017
c ./fem3d/weutro_seed.f:
c 26.09.2017 ggu adjourned to new module framework (segfault)
c
c ./fem3d/subshyutil.f:
! 26.09.2017 ggu limit written layers to min(nlv,nlvdi)
02.09.2017
c ./fem3d/femelab.f:
! 31.08.2017 ggu new flag -grd to write grd from fem file
c
c ./fem3d/substrings.f:
! 31.08.2017 ggu deleted old versions of subroutines
!
c ./fem3d/subfemutil.f:
c 31.08.2017 ggu started from scratch
11.07.2017
c ./fem3d/subrst.f:
! 06.07.2017 ggu saved hlv
!
c ./fem3d/subproj.f:
! 10.07.2017 ggu new projection LCC
!
c ./fem3d/shyproj.f:
! 10.07.2017 ggu new projection LCC
13.06.2017
c ./fem3d/subsys.f:
c 26.05.2017 ggu default of ishyff is 1 - no nos or ous files
25.05.2017
c ./fem3d/femelab.f:
! 16.05.2017 ggu&mbj better handling of points to extract
c
c ./fem3d/subreg.f:
c 23.05.2017 ggu file split into subreg, submask and subfind
16.05.2017
c ./fem3d/subtsfile.f:
c 15.05.2017 ggu new version to also read time string
c
c ./fem3d/subiso8601.f:
! 10.05.2017 ggu started
! 15.05.2017 ggu finished
!
c ./fem3d/subscn.f:
c 15.05.2017 ggu bug fix in istod -> do not change ioff on error
c
c ./fem3d/shyelab1.f:
! 11.05.2017 ggu use catmode to concatenate files
09.05.2017
c ./fem3d/netcdf.f:
c 21.04.2017 ggu some more utility routines
c
c ./fem3d/subfemintp.f:
! 23.04.2017 ggu prepared for regular grid BC interpolation
!
c ./fem3d/subscn.f:
c 15.04.2017 ggu new routines istot
c
c ./fem3d/subdef.f:
c 09.05.2017 ggu add_extension renamed to subst_extension, new add_extension
c
c ./fem3d/subssed.f:
! 09.05.2017 ggu some bugs fixed
!
c ./fem3d/subreg.f:
c 23.04.2017 ggu new routine intp_reg_single_nodes()
c
c ./fem3d/subn35.f:
c 09.05.2017 ggu bug fix for computing bottom stress
13.04.2017
c ./fem3d/subwaves.f:
! 12.04.2017 ggu routines integrated to compute bottom stress, new module
!
c ./fem3d/subpar3.f:
c 13.04.2017 ggu new array feature
c
c ./fem3d/newconz.f:
c 13.04.2017 ggu contau deprecated... use taupar (array)
c
c ./fem3d/subn35.f:
c 10.04.2017 ggu compute cd, normalized bottom stress and bottom stress
c
c ./fem3d/subbnd.f:
c 13.04.2017 ggu use array feature of para for kbound
31.03.2017
c ./femplot/supsim.f:
c 21.03.2017 ggu new parameter valmax introduced
c
c ./femplot/shyplot.f:
! 14.02.2017 ggu bug fix in plotting regular fem files - introduced il
c
c ./fem3d/elabutil.f:
! 21.03.2017 ggu mode renamed to avermode
! 23.03.2017 ccf line routines introduced
!
c ./fem3d/subflxu.f:
c 30.03.2017 ggu changed accumulator to time step dt, not number of calls
c
c ./fem3d/basutil.f:
! 21.03.2017 ggu new flag area to compute area/vol on area code
!
c ./fem3d/ouselab1.f:
c 21.03.2017 ggu mode to avermode, min/max now working (new initialization)
c
c ./fem3d/new3di.f:
c 24.03.2017 ggu new treatment for afix in sp256v_intern()
c
c ./fem3d/subnev.f:
c 29.03.2017 ggu xi2xy changed to correct for small det
c
c ./fem3d/suboff.f:
c 29.03.2017 ggu bug fix - input file opened on unit 1
c
c ./fem3d/shybas.f:
C 21.03.2017 ggu new routine to compute area/vol on area code
c
c ./fem3d/shyutil.f:
! 21.03.2017 ggu use new values for initialization of accum
! 21.03.2017 ggu computation of std revised (no NaNs)
13.02.2017
c ./fem3d/subver.f:
c 13.02.2017 ggu version 7.5.23
c
c ./fem3d/subnsa.f:
c 02.02.2017 ggu nlsa simplified
c
c ./fem3d/subshyutil.f:
! 02.02.2017 ggu new routine shy_print_descriptions()
c
c ./fem3d/sedi3d.f:
c 10.02.2017 ggu read in init data from fem files
c
c ./fem3d/subgrd.f:
c 10.02.2017 ggu bug fix: do not allocate at least 1 array element
c
c ./fem3d/newconz.f:
c 13.02.2017 mic idecay has new meaning!!! (incompatible)
c
c ./fem3d/subssed.f:
! 03.02.2017 ggu old routine copied from subcus.f
02.02.2017
c ./fem3d/subnsa.f:
c 02.02.2017 ggu nlsa simplified
c
c ./fem3d/subshyutil.f:
! 02.02.2017 ggu new routine shy_print_descriptions()
12.01.2017
c ./fem3d/submeteo2.f:
c 12.01.2017 ccf bug fix in determining pressure units
08.11.2016
c ./femplot/suplin.f:
c 27.10.2016 ccf use hkv for smooth bottom
c
c ./fem3d/subflxu.f:
c 26.10.2016 ccf bug fix in flxsec
c
c ./fem3d/newcon.f:
c 20.10.2016 ccf pass rtauv for differential nudging
c
c ./fem3d/newstab.f:
c 20.10.2016 ccf pass rtauv for differential nudging
c
c ./fem3d/subcus.f:
c 21.10.2016 ccf set ttauv and stauv for med-mar-bla
c
c ./fem3d/newcon_omp.f:
c 20.10.2016 ccf pass rtauv for differential nudging
04.11.2016
c ./femplot/shyplot.f:
! 31.10.2016 ggu shyplot restructured... directional plot still broken
c
c ./fem3d/femelab.f:
! 31.10.2016 ggu new flag condense (bcondense)
c
c ./fem3d/subres.f:
c 31.10.2016 ggu new output format in rms files
c
c ./fem3d/newtvd.f:
c 31.10.2016 ggu initialization made faster
c
c ./fem3d/new3di.f:
c 31.10.2016 ggu parallel part modified
c
c ./fem3d/subwrt.f:
c 31.10.2016 ggu new output format for wrt files
11.10.2016