-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathChangeLog
7461 lines (4965 loc) · 285 KB
/
ChangeLog
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
Fri Dec 6 16:51:20 CET 2013 Release
tagged 2013-12-06
Fri Dec 6 14:01:25 CET 2013 Stephane Popinet <[email protected]>
* Fixed docs for sinking velocity
Fri Dec 6 10:53:10 CET 2013 Stephane Popinet <[email protected]>
* Fix for bubble cap example
Wed Nov 20 16:21:17 CET 2013 Jose M. Lopez-Herrera Sanchez <[email protected]>
* New solver GfsAdvectionAxi
Axisymmetric version of the solver GfsAdvection
Fri Nov 29 11:49:51 CET 2013 Stephane Popinet <[email protected]>
* Cosmetics
Wed Nov 27 17:47:05 CET 2013 Jose M. Lopez-Herrera Sanchez <[email protected]>
* sink velocity can be applied to VariableVOFConcentration
Wed Nov 27 12:19:11 CET 2013 Jose M. Lopez-Herrera Sanchez <[email protected]>
* New test: unipolar injection in cylindrical
Tue Nov 26 11:57:29 CET 2013 Jose M. Lopez-Herrera Sanchez <[email protected]>
* sink velocities can be functions
Fri Nov 29 11:35:58 CET 2013 Stephane Popinet <[email protected]>
* Fix for gfs-highlight
It somehow didn't worh anymore with recent versions of source-highlight.
Sat Aug 3 08:09:31 CEST 2013 Dustin Langewisch <[email protected]>
* Rising bubble example
Fri Aug 2 05:53:54 CEST 2013 Release
tagged 2013-08-02
Fri Aug 2 03:50:00 CEST 2013 Stephane Popinet <[email protected]>
* Fix for 32-bits padding in kdt
Fri Aug 2 03:16:25 CEST 2013 Stephane Popinet <[email protected]>
* Removed obsolete --partial darcs option
Fri Aug 2 02:49:08 CEST 2013 Release
tagged 2013-08-01
Fri Aug 2 00:16:38 CEST 2013 Stephane Popinet <[email protected]>
* Updated Poisson tests references for new hypre version
Thu Aug 1 02:01:21 CEST 2013 Stephane Popinet <[email protected]>
* Fluxes are reset properly
The previous implementation could cause FPEs when trying to reuse
non-initialised invalid values.
Fri Jul 27 01:46:23 CEST 2012 Stephane Popinet <[email protected]>
* New tool 'gfscombine'
Wed Jul 24 04:34:18 CEST 2013 Stephane Popinet <[email protected]>
* Fixed qsort() function call in kdt
Wed Jul 24 04:32:01 CEST 2013 Stephane Popinet <[email protected]>
* Cosmetics
Wed Feb 20 18:49:15 CET 2013 Jose M. Lopez-Herrera Sanchez <[email protected]>
* For VariableVOFConcentration face diffusion is set to zero
Fri Jan 18 13:54:27 CET 2013 Jose M. Lopez-Herrera Sanchez <[email protected]>
* New object gfs_vof_face_fraction
Fri Jan 18 13:25:55 CET 2013 Jose M. Lopez-Herrera Sanchez <[email protected]>
* Corrections to gfs_vof_face_value
Fri Jan 11 04:29:54 CET 2013 Stephane Popinet <[email protected]>
* Updated field.awk for stratified lake case
Fri May 31 08:57:17 CEST 2013 Release
tagged 2013-05-28
Tue May 28 13:10:34 CEST 2013 Jose M. Lopez-Herrera Sanchez <[email protected]>
* electric BC fixed
This patch solve defective BC application in parallel runs
Sat Jan 12 10:57:27 CET 2013 Release
tagged 2013-01-12
Sat Jan 12 08:55:45 CET 2013 Stephane Popinet <[email protected]>
* New test case geostrophic adjustment with Saint Venant
Sat Jan 12 08:41:14 CET 2013 Stephane Popinet <[email protected]>
* Cosmetics for Rossby test case
Sat Jan 12 08:38:09 CET 2013 Stephane Popinet <[email protected]>
* Fixed scaling of 'geo' test case
Thu Jan 10 00:33:58 CET 2013 Stephane Popinet <[email protected]>
* Checks that SourcePipe does not use negative water depths
Thu Jan 10 00:33:34 CET 2013 Stephane Popinet <[email protected]>
* Fixes for convergence checks for Boyd's culvert model
Wed Jan 9 07:55:10 CET 2013 Release
tagged 2012-12-06
Thu Dec 6 05:38:21 CET 2012 Stephane Popinet <[email protected]>
* Do not use pipes within gnuplot for test cases
Gnuplot seems to have problems when several instances are running in
parallel.
Wed Jan 9 04:31:00 CET 2013 Stephane Popinet <[email protected]>
* Fix for incorrect pending functions
Wed Jan 9 03:56:08 CET 2013 Stephane Popinet <[email protected]>
* Added missing BCs for OutputScalar when using functions
Wed Jan 9 01:50:32 CET 2013 Stephane Popinet <[email protected]>
* Cosmetics for VOFConcentration
Thu Nov 15 12:52:56 CET 2012 [email protected]
* new test case to check diffusion applied to VariableVOFConcentration
Thu Nov 15 12:49:25 CET 2012 [email protected]
* cylinder test updated
Thu Nov 15 11:27:29 CET 2012 [email protected]
* concentration test is adapted to the new definition of VariableVOFConcentration
Thu Nov 15 11:19:18 CET 2012 [email protected]
* VariableVOFConcentration is defined now as per cell volume
Sat Dec 1 06:13:57 CET 2012 Stephane Popinet <[email protected]>
* Added GNUlib open_memstream() implementation for BSD systems
Fri Nov 30 07:54:38 CET 2012 Release
tagged 2012-11-30
Fri Nov 30 05:19:43 CET 2012 Stephane Popinet <[email protected]>
* Set "feature test macros" correctly for open_memstream()
Fri Nov 30 01:17:34 CET 2012 Release
tagged 2012-11-29
Thu Nov 29 22:56:26 CET 2012 Stephane Popinet <[email protected]>
* Use only glib functions for temporary file creation
System-supplied versions are very flaky on some systems (e.g. AIX).
Thu Nov 29 10:13:22 CET 2012 Stephane Popinet <[email protected]>
* Replaced tmpfile() with open_memstream()
This avoids using (often flaky) filesystems so should be more robust
and more efficient.
Thu Nov 29 03:12:12 CET 2012 Stephane Popinet <[email protected]>
* Consistent temporary file creation
Wed Nov 28 22:23:16 CET 2012 Stephane Popinet <[email protected]>
* Renamed configure.in to configure.ac
Wed Nov 28 21:49:47 CET 2012 Stephane Popinet <[email protected]>
* Fix for command-line events and GfsFunctions
Tue Nov 27 05:59:49 CET 2012 Release
tagged 2012-11-27
Tue Nov 27 03:27:12 CET 2012 Stephane Popinet <[email protected]>
* Pre-compiled GfsFunctions are always cached
This is necessary to avoid re-compilation during load-balancing.
Mon Nov 26 22:52:23 CET 2012 Stephane Popinet <[email protected]>
* Fixes for GfsGlobals and GfsFunctionConstant
Mon Nov 26 00:12:30 CET 2012 Stephane Popinet <[email protected]>
* Fix for gfs_vorticity() with GfsAxi
The generalised metric calculation for vorticity somehow does not work
for the axisymmetric metric.
Sat Nov 24 06:17:33 CET 2012 Stephane Popinet <[email protected]>
* GfsFunctions are compiled as a "batch"
This means that usually only one compilation/linking is required for
the entire simulation rather than one compile/link for each
GfsFunction. On systems with slow fork/system() calls this can make a
large difference in initialisation time.
Wed Nov 21 06:55:37 CET 2012 Stephane Popinet <[email protected]>
* Added profiling info for compilation of GfsFunctions
Tue Nov 20 21:51:23 CET 2012 Stephane Popinet <[email protected]>
* Variable density for GfsRiver uses alpha
Fri Nov 16 04:26:29 CET 2012 Stephane Popinet <[email protected]>
* New stratified lake test case
Thu Nov 15 00:07:11 CET 2012 Stephane Popinet <[email protected]>
* Preliminary implementation of variable density for multilayer Saint-Venant
Wed Nov 14 22:26:37 CET 2012 Stephane Popinet <[email protected]>
* Cosmetics.
Wed Nov 14 22:25:11 CET 2012 Stephane Popinet <[email protected]>
* Fix for initialisation of layered variables
Wed Nov 14 22:23:55 CET 2012 Stephane Popinet <[email protected]>
* Bug fix for FFT module
Sun Oct 21 21:49:04 CEST 2012 Stephane Popinet <[email protected]>
* Fix for uninitialised kmax in gfs_height_curvature()
Mon Sep 17 12:17:47 CEST 2012 Daniel Fuster <[email protected]>
* GfsInit allows for a physical end time
Wed Nov 14 01:18:54 CET 2012 Stephane Popinet <[email protected]>
* Fix for GfsFunction and directories with spaces
Wed Nov 14 01:05:28 CET 2012 Stephane Popinet <[email protected]>
* Possible fix for gfs_domain_tag_droplets() in parallel
Mon Nov 12 07:53:38 CET 2012 Release
tagged 2012-11-12
Mon Nov 12 05:40:35 CET 2012 Stephane Popinet <[email protected]>
* Updated cloneubuntu to 12.10
Mon Nov 12 05:40:11 CET 2012 Stephane Popinet <[email protected]>
* Debian packages depend on libproj-dev rather than proj (obsolete)
Sun Oct 21 18:51:15 CEST 2012 Release
tagged 2012-10-21
Sun Oct 21 16:06:29 CEST 2012 Stephane Popinet <[email protected]>
* Updated reference for rotate test case
Sat Oct 20 19:09:37 CEST 2012 Stephane Popinet <[email protected]>
* Additional test case for TracerVOFHeight on 4 procs
Sat Oct 20 18:13:21 CEST 2012 Stephane Popinet <[email protected]>
* Fix for TracerVOFHeight with periodic/parallel BCs
Mon Oct 8 14:11:35 CEST 2012 Stephane Popinet <[email protected]>
* New vector mapping functions mapvx(), mapvy()
Wed Oct 3 14:06:28 CEST 2012 Stephane Popinet <[email protected]>
* Fixed mapping of cubed sphere coordinates
Tue Oct 2 17:05:09 CEST 2012 Stephane Popinet <[email protected]>
* Second-order vertical advection for layered module
Thu Sep 6 13:54:00 CEST 2012 Release
tagged 2012-09-06
Thu Sep 6 11:48:26 CEST 2012 Stephane Popinet <[email protected]>
* Minor test suite fixes
Wed Sep 5 16:12:29 CEST 2012 Stephane Popinet <[email protected]>
* Fix for symmetry conditions of tensors
Sun Aug 12 07:16:50 CEST 2012 Stephane Popinet <[email protected]>
* Fixes for rotated boundaries in 2nd-order GfsRiver
Fri Aug 17 00:51:25 CEST 2012 George Gerber <[email protected]>
* Fixes for convergence of outlet control iteration
Fri Aug 17 00:51:10 CEST 2012 George Gerber <[email protected]>
* New utility discharge_table for culvert module
Thu Aug 16 23:41:03 CEST 2012 Stephane Popinet <[email protected]>
* Added missing outputs for GfsRiver
Thu Aug 16 23:40:25 CEST 2012 Stephane Popinet <[email protected]>
* Fix for vector GfsSources
Tue Aug 14 01:48:35 CEST 2012 Stephane Popinet <[email protected]>
* New test case 'nonlinear geostrophic adjustment'
Tue Aug 14 01:29:16 CEST 2012 Stephane Popinet <[email protected]>
* Fix for layered shock test case
Sun Aug 12 23:25:04 CEST 2012 Stephane Popinet <[email protected]>
* Option for non-linear free-surface in GfsOcean
Wed Aug 1 02:48:11 CEST 2012 Stephane Popinet <[email protected]>
* Cosmetics for groundwater test case
Tue Jul 31 17:14:12 CEST 2012 [email protected]
* groundwater test with spatial step in permeability
Tue Jul 31 16:16:23 CEST 2012 [email protected]
* test solving groundwater flow by projection
Fri Jun 15 02:48:23 CEST 2012 Stephane Popinet <[email protected]>
* New free surface Rossby-Haurwitz test case
Thu Jun 14 07:26:05 CEST 2012 Stephane Popinet <[email protected]>
* Fixes for metric in GfsOcean
Sun Aug 12 09:39:57 CEST 2012 Stephane Popinet <[email protected]>
* New test case, shock wave on cubed sphere
Sun Aug 12 07:22:28 CEST 2012 Stephane Popinet <[email protected]>
* New Rossby-Haurwitz waves Saint-Venant test case
Tue Jul 31 09:32:48 CEST 2012 Release
tagged 2012-07-31
Tue Jul 31 07:21:32 CEST 2012 Stephane Popinet <[email protected]>
* Fix for layered shock test case
Tue Jul 31 04:45:18 CEST 2012 Stephane Popinet <[email protected]>
* Mass fluxes are not necessary for a single layer
Wed Jul 25 05:00:47 CEST 2012 Stephane Popinet <[email protected]>
* Second-order vertical advection for GfsRiver
Wed Jul 25 00:58:01 CEST 2012 Stephane Popinet <[email protected]>
* New layered transcritical flow test case
Mon Jul 23 01:52:33 CEST 2012 Stephane Popinet <[email protected]>
* Bottom friction for multilayer Saint-Venant
Fri Jul 20 07:11:54 CEST 2012 Stephane Popinet <[email protected]>
* Boundary conditions for multilayer Saint-Venant
Thu Jul 19 07:33:58 CEST 2012 Stephane Popinet <[email protected]>
* New test case for transcritical flow over a bump
Thu Jul 19 05:44:45 CEST 2012 Stephane Popinet <[email protected]>
* New lake test case for multilayer Saint-Venant
Thu Jul 19 03:13:36 CEST 2012 Stephane Popinet <[email protected]>
* Bug fixes for multilayer Saint-Venant
Tue Jul 17 04:46:58 CEST 2012 Stephane Popinet <[email protected]>
* Fix for poiseuille/river test case
Fri Jul 13 07:02:59 CEST 2012 Jesse Robertson <[email protected]>
* New example 'viscmix'
Sun Jun 24 12:19:59 CEST 2012 Stephane Popinet <[email protected]>
* Tracer advection for GfsRiver
Fri Jun 22 01:37:57 CEST 2012 Stephane Popinet <[email protected]>
* New GfsLayers object
Wed Jun 20 12:23:54 CEST 2012 Stephane Popinet <[email protected]>
* New Poiseuille test case for multilayer Saint-Venant
Wed Jun 20 07:08:59 CEST 2012 Stephane Popinet <[email protected]>
* Vertical viscosity for multilayer Saint-Venant
Tue Jun 19 12:15:25 CEST 2012 Stephane Popinet <[email protected]>
* Multilayer Saint-Venant solver
Thu Jun 14 03:00:03 CEST 2012 Stephane Popinet <[email protected]>
* New function gfs_domain_cell_traverse_new()
Fri Jul 6 13:27:03 CEST 2012 Release
tagged 2012-07-06
Fri Jul 6 11:40:09 CEST 2012 Stephane Popinet <[email protected]>
* Fix for distribution of test suite in tarballs
Tue Jul 3 12:32:21 CEST 2012 Release
tagged 2012-06-28
Thu Jun 28 04:15:01 CEST 2012 Stephane Popinet <[email protected]>
* Debian packages needs mpi-default-dev also at runtime
Fri Jun 22 13:30:09 CEST 2012 Stephane Popinet <[email protected]>
* New utility 'gfsplot'
For coupling gnuplot with OutputSimulation (text format). There is an
example in doc/examples/dam.
Sun Jun 17 09:05:27 CEST 2012 Stephane Popinet <[email protected]>
* Kinetic Riemann solver for GfsRiver
Wed Jun 13 07:31:37 CEST 2012 Release
tagged 2012-06-13
Wed Jun 13 05:18:38 CEST 2012 Stephane Popinet <[email protected]>
* Added missing classes to gfs_classes()
Wed Jun 13 01:48:40 CEST 2012 Stephane Popinet <[email protected]>
* Fix for treatment of thin solids
Wed Jun 13 01:47:54 CEST 2012 Stephane Popinet <[email protected]>
* Fix for 'layered' bug in moving.c
Wed Jun 13 01:47:27 CEST 2012 Stephane Popinet <[email protected]>
* Updated test cases references
Tue Jun 12 03:46:54 CEST 2012 Stephane Popinet <[email protected]>
* New "overlaps()" utility function
Tue Jun 12 02:13:28 CEST 2012 Stephane Popinet <[email protected]>
* Fix for Dirichlet bcs in VariablePoisson
Tue Jun 12 01:58:49 CEST 2012 Stephane Popinet <[email protected]>
* OutputGRD uses physical coordinates
Fri Jun 1 03:29:30 CEST 2012 Stephane Popinet <[email protected]>
* gfs_divergence() uses a finite-volume approximation
Thu May 31 01:44:05 CEST 2012 Stephane Popinet <[email protected]>
* New Rossby-Haurwitz wave test case
Thu May 31 01:09:32 CEST 2012 Stephane Popinet <[email protected]>
* Added evolution of error with time for cosine bell test case
Tue May 29 02:00:15 CEST 2012 Stephane Popinet <[email protected]>
* Support for rotated MPI boundaries
Mon May 28 06:08:10 CEST 2012 Stephane Popinet <[email protected]>
* Various fixes for layered module
Mon May 28 05:54:15 CEST 2012 Stephane Popinet <[email protected]>
* New object GfsMetricVariable
Mon May 28 05:51:45 CEST 2012 Stephane Popinet <[email protected]>
* inverse_vector() method for MetricCubed
Mon May 28 05:48:56 CEST 2012 Stephane Popinet <[email protected]>
* AdaptError now works on cubed sphere
Fri May 25 08:13:00 CEST 2012 Stephane Popinet <[email protected]>
* Cosmetics
Fri May 25 08:08:28 CEST 2012 Stephane Popinet <[email protected]>
* Switched cubed sphere coefficients back to Rancic et al
Fri May 25 07:13:59 CEST 2012 Stephane Popinet <[email protected]>
* gfs_divergence() and gfs_vorticity() take metric into account
Fri May 25 07:06:17 CEST 2012 Stephane Popinet <[email protected]>
* Fix for interpolation close to domain corners.
Fri May 25 06:59:31 CEST 2012 Stephane Popinet <[email protected]>
* New utility functions dx2(), dy2(), dz2()
Fri May 25 06:57:01 CEST 2012 Stephane Popinet <[email protected]>
* New function gfs_cartesian_grid_read()
Fri May 25 06:40:52 CEST 2012 Stephane Popinet <[email protected]>
* Removed netcdf from RPM dependencies
Mon May 21 00:12:02 CEST 2012 Stephane Popinet <[email protected]>
* The TMPDIR environment variable is taken into account
Sun May 20 23:40:45 CEST 2012 Stephane Popinet <[email protected]>
* LocateArray was not updated when entirely solid boxes were destroyed
Fri May 18 01:21:25 CEST 2012 Stephane Popinet <[email protected]>
* CGD files now understand "rx,ry,rz"
This is useful for defining coordinate transformations numerically.
Wed May 16 10:42:39 CEST 2012 Stephane Popinet <[email protected]>
* Orthogonality is the deviation from orthogonality
Wed May 16 10:40:25 CEST 2012 Stephane Popinet <[email protected]>
* Conformal and spherical options for MetricLaplace
Tue May 15 23:28:46 CEST 2012 Stephane Popinet <[email protected]>
* New object GfsMetricLaplace
Tue May 8 03:10:47 CEST 2012 Stephane Popinet <[email protected]>
* New derived variable "Orthogonality"
Fri May 4 08:59:36 CEST 2012 Stephane Popinet <[email protected]>
* New object GfsVariableLaplacian
Thu May 3 22:45:04 CEST 2012 Stephane Popinet <[email protected]>
* Fix for electro module warning
Thu May 3 13:02:40 CEST 2012 "Jose Lopez-Herrera Sanchez" <[email protected]>"
* A warning for correct use of EHD implicit scheme
Wed May 2 23:34:42 CEST 2012 Stephane Popinet <[email protected]>
* New 'culvert' module
Mon Apr 30 23:24:32 CEST 2012 Stephane Popinet <[email protected]>
* build_function_gcc uses '$CC' rather than just 'gcc'
Wed Mar 21 21:38:04 CET 2012 Stephane Popinet <[email protected]>
* Norm of residual takes metric into account
Thu Mar 8 21:58:48 CET 2012 Stephane Popinet <[email protected]>
* New 'layered' module for 2.5D hydrostatic solver
Tue Feb 28 22:28:14 CET 2012 Stephane Popinet <[email protected]>
* New object GfsVariableAverage
Wed Feb 22 06:59:29 CET 2012 Stephane Popinet <[email protected]>
* Vorticity is computed consistently from circulation (2D only for now)
Fri Feb 17 03:15:39 CET 2012 Stephane Popinet <[email protected]>
* gfs_domain_face_bc() now works also for "rotated" edges
Tue Feb 7 22:40:13 CET 2012 Stephane Popinet <[email protected]>
* New object GfsDomainProjection
Fri Apr 27 10:29:30 CEST 2012 Release
tagged 2012-04-27
Fri Apr 27 06:47:35 CEST 2012 Stephane Popinet <[email protected]>
* Bug fix for parallel restarts
Fri Apr 27 00:40:44 CEST 2012 Stephane Popinet <[email protected]>
* Fixed libmath and mergesort() conflicts in kdt.c
Thu Apr 26 23:48:43 CEST 2012 Stephane Popinet <[email protected]>
* Fix for compilation flags on Mac OSX
Mon Dec 19 08:31:23 CET 2011 [email protected]
* Fixes to let autogen.sh work on MacOS X - Darwin
Thu Apr 26 11:30:01 CEST 2012 Release
tagged 2012-04-26
Thu Apr 26 08:54:32 CEST 2012 Stephane Popinet <[email protected]>
* Updated test case references
Thu Apr 26 06:51:51 CEST 2012 Stephane Popinet <[email protected]>
* KDT defines better bounds for nodes
Thu Apr 26 06:00:53 CEST 2012 Stephane Popinet <[email protected]>
* New rsurface2kdt conversion utility
Old-style R-tree terrain databases are now unsupported but can still
be converted to the KDT format using this utility.
Thu Apr 26 05:49:16 CEST 2012 Stephane Popinet <[email protected]>
* New utility kdt2kdt for conversion between versions
Thu Apr 26 03:10:08 CEST 2012 Stephane Popinet <[email protected]>
* Fix for okada module and lonlat coordinates
Thu Apr 26 03:07:47 CEST 2012 Stephane Popinet <[email protected]>
* New 'terrain' test case
Thu Apr 26 03:07:32 CEST 2012 Stephane Popinet <[email protected]>
* gfs_interpolate() uses 5 points interpolation.
This doesn't smooth as much as 4 points interpolation. Note that the
size of the array filled by gfs_cell_corner_values() as grown by one
element as a result of this change. It is imperative to adjust the
size of the array for all calls made to gfs_cell_corner_values().
Tue Apr 24 08:37:32 CEST 2012 Stephane Popinet <[email protected]>
* Fix for VOFHeight Bcs when used together with Solid
Fri Apr 20 06:45:42 CEST 2012 Stephane Popinet <[email protected]>
* Terrain module now only supports the KDT format
Thu Apr 5 04:27:10 CEST 2012 Stephane Popinet <[email protected]>
* Electrohydro and Poisson/Helmholtz solvers allow negative coefficients
Wed Apr 4 02:42:52 CEST 2012 Stephane Popinet <[email protected]>
* Kdt optimises use of temporary files
Tue Apr 3 05:21:55 CEST 2012 Stephane Popinet <[email protected]>
* Reuses buffers
Tue Apr 3 01:16:31 CEST 2012 Stephane Popinet <[email protected]>
* Much improved kdt implementation
Mon Mar 26 07:32:07 CEST 2012 Release
tagged 2012-03-26
Mon Mar 26 05:41:28 CEST 2012 Stephane Popinet <[email protected]>
* New SourcePipe object
Sun Mar 25 22:05:09 CEST 2012 Stephane Popinet <[email protected]>
* Cleanup of swirl test case
Sun Mar 25 07:51:34 CEST 2012 Stephane Popinet <[email protected]>
* RPM fixes for Fedora 16 and CentOS 6
Sun Mar 25 01:35:03 CET 2012 Release
tagged 2012-03-24
Sat Mar 24 23:52:04 CET 2012 Stephane Popinet <[email protected]>
* Updated reference for electro test case
Sat Mar 24 08:43:09 CET 2012 Stephane Popinet <[email protected]>
* Need to use gfs_face_interpolated_value_generic() when face is not simply oriented
Sat Mar 24 08:41:34 CET 2012 Stephane Popinet <[email protected]>
* Fix for bibtex path
Sat Mar 24 01:11:19 CET 2012 Stephane Popinet <[email protected]>
* Fix for gfsview snapshot tarballs
Fri Mar 23 23:49:21 CET 2012 Stephane Popinet <[email protected]>
* Tests and examples lists are created automatically from template.tex
Tue Mar 20 23:18:21 CET 2012 Stephane Popinet <[email protected]>
* New test case 'still/bipolar'
Sun Mar 18 23:49:51 CET 2012 Stephane Popinet <[email protected]>
* New test case: parabolic container with solid boundaries
Wed Mar 14 00:22:03 CET 2012 Stephane Popinet <[email protected]>
* New 'still' test case for cut cells and Saint-Venant
Fri Mar 23 08:35:22 CET 2012 Stephane Popinet <[email protected]>
* 'W' can be used to define an azimuthal velocity in GfsAxi
Fri Mar 23 06:54:34 CET 2012 Stephane Popinet <[email protected]>
* Swirl test case uses the new formulation
Thu Mar 22 02:52:03 CET 2012 Stephane Popinet <[email protected]>
* Fix for libparticulates and libbubbles linking
Wed Mar 21 21:39:47 CET 2012 Stephane Popinet <[email protected]>
* Unified bibliographies for examples and tests
Mon Jan 9 15:52:56 CET 2012 "Jose Lopez-Herrera Sanchez" <[email protected]>"
* Swirl test case
Wed Mar 21 22:45:35 CET 2012 Stephane Popinet <[email protected]>
* Fixes for gradients and metric in GfsRiver (due to cut cell implementation)
Wed Mar 21 21:34:04 CET 2012 Stephane Popinet <[email protected]>
* New 'shock' example
Mon Mar 19 01:02:42 CET 2012 Hyunuk An <[email protected]>
* Cut cells for GfsRiver
Sun Mar 18 22:58:02 CET 2012 Release
tagged 2012-03-18
Sun Mar 18 01:11:23 CET 2012 Stephane Popinet <[email protected]>
* Removed support for obsolete 'gts-config' and 'gfs-config'
Sun Mar 18 01:08:52 CET 2012 Stephane Popinet <[email protected]>
* Fixes for automake and install dirs for scripts
Thu Mar 8 22:00:19 CET 2012 Stephane Popinet <[email protected]>
* Fixed gfs_variable_read_vector() input checking
Fri Mar 2 02:58:56 CET 2012 Release
tagged 2012-03-01
Thu Mar 1 22:50:11 CET 2012 Stephane Popinet <[email protected]>
* Fix for incorrect use of gfs_face_interpolated_value() in GfsDiffusion
Thu Mar 1 22:48:17 CET 2012 Stephane Popinet <[email protected]>
* Fix for GfsGlobal and function cache
Wed Feb 29 22:29:12 CET 2012 Stephane Popinet <[email protected]>
* Fix for refinement of mixed cells containing a VOF interface
Note that this is not mass conserving.
Wed Feb 29 08:57:33 CET 2012 Release
tagged 2012-02-29
Wed Feb 29 06:51:47 CET 2012 Stephane Popinet <[email protected]>
* Latex does not like underscores in test case names
Wed Feb 29 03:10:06 CET 2012 Stephane Popinet <[email protected]>
* New test case wannier/stretch
Wed Feb 29 02:41:37 CET 2012 Stephane Popinet <[email protected]>
* Fixed version info for skew_box test case
Tue Feb 28 23:10:20 CET 2012 Daniel Fuster <[email protected]>
* New test case for AMR with the skew-symmetric formulation
Tue Feb 28 00:31:31 CET 2012 Stephane Popinet <[email protected]>
* Updated reference for shear/curvature test case
Tue Feb 28 00:22:15 CET 2012 Stephane Popinet <[email protected]>
* Support for metric and embedded boundaries
Fri Feb 24 06:41:37 CET 2012 Stephane Popinet <[email protected]>
* Removed crappy "deferred compilation" stuff
This has been replaced by a generic global function cache.
Thu Feb 23 03:14:19 CET 2012 Stephane Popinet <[email protected]>
* Fix for VariableStreamfunction and degenerate metrics (e.g. lon-lat)
Thu Feb 23 03:13:04 CET 2012 Stephane Popinet <[email protected]>
* Hypre module now works also for VariablePoisson
Wed Feb 22 21:45:00 CET 2012 Stephane Popinet <[email protected]>
* Adaptation needs to occur at the right time for GfsAdvection
In particular so that the streamfunction is defined correctly after
adaptation for streamfunction/vorticity formulations.
Wed Feb 22 01:12:34 CET 2012 Stephane Popinet <[email protected]>
* Bias of residual now correctly reflects the compatibility condition
Tue Feb 21 23:47:00 CET 2012 Stephane Popinet <[email protected]>
* VariablePoisson takes an optional multilevel parameter block
Tue Feb 21 03:50:25 CET 2012 Release
tagged 2012-02-20
Tue Feb 21 00:35:14 CET 2012 Stephane Popinet <[email protected]>
* Bug fix for GfsInitFaceValues
Tue Feb 21 00:07:36 CET 2012 Stephane Popinet <[email protected]>
* Cosmetics for skewsymmetric module
Wed Jan 25 19:22:33 CET 2012 Daniel Fuster <[email protected]>
* Fixes for AMR in the skew-symmetric formulation
Wed Jan 25 19:17:15 CET 2012 Daniel Fuster <[email protected]>
* New object GfsInitFaceValues in the skew-symmetric module
Wed Jan 25 19:12:11 CET 2012 Daniel Fuster <[email protected]>
* Fix in viscous terms in the skew-symmetric module + several minor fixes
Mon Feb 20 23:57:44 CET 2012 Stephane Popinet <[email protected]>
* Minor bug fix for Coriolis terms
Mon Feb 20 23:43:38 CET 2012 Stephane Popinet <[email protected]>
* Acceleration-based CFL rollback
Fri Feb 17 03:04:51 CET 2012 Stephane Popinet <[email protected]>
* Bug fix for gfs_get_poisson_problem() with periodic boundary conditions
Fri Feb 17 03:16:47 CET 2012 Stephane Popinet <[email protected]>
* Metric terms for advection of velocity
Fri Feb 17 03:15:12 CET 2012 Stephane Popinet <[email protected]>
* Added vector transformations to cubed sphere mapping
Wed Feb 15 23:44:04 CET 2012 Stephane Popinet <[email protected]>
* GfsInit can initialise vector fields with metric
Thu Feb 9 21:19:36 CET 2012 Stephane Popinet <[email protected]>
* Hydrostatic pressure needs to be updated when the mesh is adapted
Tue Feb 7 23:00:02 CET 2012 Stephane Popinet <[email protected]>
* GfsPoisson takes Dirichlet conditions into account for compatibility
Tue Feb 7 22:37:52 CET 2012 Stephane Popinet <[email protected]>
* Minor warning fix for gfs_velocity_face_sources
Tue Feb 7 22:36:55 CET 2012 Stephane Popinet <[email protected]>
* Timestep CFL only takes accelerations into account when velocity is zero
Wed Feb 1 15:06:12 CET 2012 "Jose Lopez-Herrera Sanchez" <[email protected]>"
* added missed gfs_domain_surface_bc in electrohydro.c
Tue Jan 31 05:46:28 CET 2012 Release
tagged 2012-01-31
Tue Jan 31 03:55:45 CET 2012 Stephane Popinet <[email protected]>
* Unified WEBROOT for docs
Tue Jan 31 00:37:51 CET 2012 Stephane Popinet <[email protected]>
* Fixed typo
Mon Jan 30 22:40:07 CET 2012 Stephane Zaleski <[email protected]>
* Do not call boundary_tree on boundaries with no root cell
Thu Nov 24 23:10:47 CET 2011 Stephane Popinet <[email protected]>
* Changed quotes for TecPlot files
Mon Jan 30 05:47:24 CET 2012 Stephane Popinet <[email protected]>
* Consistent use of GFS_VALUE() and GFS_VARIABLE()
Mon Jan 30 05:43:50 CET 2012 Stephane Popinet <[email protected]>
* New object GfsHydrostaticPressure
Fri Jan 27 06:44:12 CET 2012 Stephane Popinet <[email protected]>
* gfs_send_objects() and gfs_union_open() use fread() rather than mmap()
Openfabrics/infiniband/OpenMPI somehow does not like mmap().
Mon Jan 30 02:43:59 CET 2012 Stephane Popinet <[email protected]>
* All GfsModules are kept until the simulation is destroyed
This means that in parallel no recompilation of GfsModules should be
necessary for GfsFunctions appearing in the boundary conditions of
GfsBoxes (when exchanging boxes between PEs for load balancing).
This should allow to circumvent the dodgy fork() limitation of
openfabrics/infiniband.
Mon Jan 30 02:37:45 CET 2012 Stephane Popinet <[email protected]>
* Simplified box_split()
Wed Nov 23 02:46:27 CET 2011 Release
tagged 2011-11-23
Wed Nov 23 01:11:09 CET 2011 Stephane Popinet <[email protected]>
* Cosmetics
Tue Nov 15 23:12:55 CET 2011 Vladimir Kolobov <[email protected]>
* Implementing gfs_domain_write_tecplot_surface
Adding capability of outputing Gerris surfaces (either gts or implicitly specified) into Tecplot files
Tue Nov 22 23:57:02 CET 2011 Stephane Popinet <[email protected]>
* Bug fix for charge in electrohydro
Tue Nov 22 21:33:49 CET 2011 Stephane Popinet <[email protected]>
* Removed obsolete GfsSourceCharge
Tue Nov 22 21:32:27 CET 2011 Stephane Popinet <[email protected]>
* More fixes for map module and inverted transforms
Tue Nov 22 21:28:41 CET 2011 J.M. Lopez-Herrera <[email protected]>
* Implicit treatment of the charge density equation for electrohydro
Charge volume density is now user-defined by means of the function 'charge'.
Tue Nov 22 21:28:21 CET 2011 J.M. Lopez-Herrera <[email protected]>
* Electrokinetic test: Gouy-Chapman Debye layer
Tue Nov 22 06:49:25 CET 2011 J.M. Lopez-Herrera <[email protected]>
* Bump test also compares the implicit vs explicit charge scheme
Fri Nov 18 02:56:51 CET 2011 Stephane Popinet <[email protected]>
* New --debug option for gerris2D/3D
Tue Nov 15 03:47:31 CET 2011 Release
tagged 2011-11-15
Tue Nov 15 02:09:46 CET 2011 Stephane Popinet <[email protected]>
* Important fix for SurfaceBc and Neumann conditions
They were completely wrong for values different from zero.
Tue Nov 15 02:06:58 CET 2011 Stephane Popinet <[email protected]>
* Fix for MapProjection and inversion of mapping transforms
Thu Nov 10 09:48:20 CET 2011 Release
tagged 2011-11-10
Thu Nov 10 07:43:44 CET 2011 Stephane Popinet <[email protected]>
* Updated test case references for new unified axi solver
Thu Nov 10 04:12:37 CET 2011 Stephane Popinet <[email protected]>
* Removed (hopefully) obsolete check on interface curvature
Wed Nov 9 23:18:15 CET 2011 Stephane Popinet <[email protected]>
* GfsGlobal can include files from working directory
Wed Nov 9 23:16:53 CET 2011 Stephane Popinet <[email protected]>
* New wannier/bipolar test case
Wed Nov 9 22:32:34 CET 2011 Stephane Popinet <[email protected]>
* New wannier test case
Wed Nov 9 10:29:07 CET 2011 Stephane Popinet <[email protected]>
* Cosmetics
Mon Nov 7 21:14:34 CET 2011 Stephane Popinet <[email protected]>
* Axi solver is now just another metric
Mon Nov 7 01:23:52 CET 2011 Stephane Popinet <[email protected]>
* New annulus test case
Mon Nov 7 01:00:08 CET 2011 Stephane Popinet <[email protected]>
* GfsSource takes into account mapping for vector quantities
Mon Nov 7 00:54:59 CET 2011 Stephane Popinet <[email protected]>
* New vector mapping functions
Sat Nov 5 06:48:50 CET 2011 Stephane Popinet <[email protected]>
* Updated conflicting debian packages
Wed Nov 2 21:36:27 CET 2011 Stephane Popinet <[email protected]>
* Fixed m4 options configure test
Sun Oct 30 11:13:29 CET 2011 Stephane Popinet <[email protected]>
* Improved cloneubuntu
Fri Oct 28 06:05:26 CEST 2011 Stephane Popinet <[email protected]>
* First implementation of metric terms for viscosity
Tue Oct 25 09:40:46 CEST 2011 Release
tagged 2011-10-25
Tue Oct 25 07:36:03 CEST 2011 Stephane Popinet <[email protected]>
* Moved darcs gts to dalembert
Tue Oct 25 05:08:18 CEST 2011 Stephane Popinet <[email protected]>
* GfsMap uses Newton iterations to compute inverse mapping
Tue Oct 25 03:00:14 CEST 2011 Stephane Popinet <[email protected]>
* DischargeElevation is not an "Init" event
Tue Oct 25 01:30:10 CEST 2011 Stephane Popinet <[email protected]>
* New non-uniform-stretching lid example
Mon Oct 24 23:29:03 CEST 2011 Stephane Popinet <[email protected]>
* New Poiseuille with metric test case
Tue Mar 29 21:33:54 CEST 2011 Stephane Popinet <[email protected]>
* Changed the ordering of mapping/scaling transforms
Mon Mar 28 21:37:08 CEST 2011 Stephane Popinet <[email protected]>
* Commented out GSL use in metric.c
Mon Mar 28 21:08:25 CEST 2011 Stephane Popinet <[email protected]>
* Updated documentation format for new GfsMetric objects
Mon Mar 28 20:55:04 CEST 2011 Stephane Popinet <[email protected]>
* GfsGenericMetric is now truly generic.
Mon Mar 28 20:43:30 CEST 2011 Stephane Popinet <[email protected]>
* Simplified MapFunction
Wed Feb 9 21:26:07 CET 2011 Stephane Popinet <[email protected]>
* New GfsGenericMetric and GfsMetric objects
Thu Jan 13 22:26:18 CET 2011 Sebastien Delaux <[email protected]>
* The Coriolis test now uses the stretch metric
Fri Oct 21 05:35:40 CEST 2011 Release
tagged 2011-10-08
Sat Oct 8 05:11:25 CEST 2011 Stephane Popinet <[email protected]>
* Fixes for RPM specfile
Tue Oct 18 06:42:59 CEST 2011 Release
tagged 2011-10-14
Fri Oct 14 09:15:39 CEST 2011 Daniel Fuster <[email protected]>
* Initialization of the "old" velocity is skew-symmetric module + other minor changes
Fri Oct 14 00:53:03 CEST 2011 Stephane Popinet <[email protected]>
* Fix for "debugging leftovers" of skewsymmetric module
Thu Oct 13 23:25:55 CEST 2011 Stephane Popinet <[email protected]>
* Various cosmetic improvements
Tue Oct 11 11:03:32 CEST 2011 Daniel Fuster<[email protected]>
* Proper initialization and stockage of face velocities in skew-symmetric module
Sun Oct 9 21:51:16 CEST 2011 Daniel Fuster <[email protected]>
* 3D implementation of viscosity in skew-symmetric formulation
Thu Oct 6 10:52:56 CEST 2011 Daniel Fuster <[email protected]>
* Return to the original skew symmetric formulation + user defined value of beta
Sun Aug 7 17:23:30 CEST 2011 Daniel Fuster <[email protected]>
* new scheme implementation based on the skew-symmetric formulation
Mon Aug 1 10:55:46 CEST 2011 Daniel Fuster <[email protected]>
* variable density in skew symmetric formulation
Mon Oct 10 18:13:30 CEST 2011 J.M. Lopez-Herrera <[email protected]>
* Bug fix in EHD forces
Fri Oct 7 11:41:54 CEST 2011 Release
tagged 2011-10-07
Fri Oct 7 09:34:47 CEST 2011 Stephane Popinet <[email protected]>
* Doc fix
Fri Oct 7 09:28:36 CEST 2011 Stephane Popinet <[email protected]>
* Another fix for gfs_domain_forget_boundary()
Fri Oct 7 06:26:19 CEST 2011 Stephane Popinet <[email protected]>
* Debian/Ubuntu packages now include the hypre module
Fri Oct 7 06:13:53 CEST 2011 Stephane Popinet <[email protected]>
* Fix for gfs_domain_forget_boundary()
Thu Oct 6 23:36:38 CEST 2011 Stephane Popinet <[email protected]>
* Hypre module should now work also for diffusion problems
Thu Oct 6 00:09:04 CEST 2011 Stephane Popinet <[email protected]>
* Fix for destroyed boundaries and gfs_domain_boundary_locate()
Wed Oct 5 22:43:33 CEST 2011 Stephane Popinet <[email protected]>
* New 'shore' test case
Wed Oct 5 03:42:05 CEST 2011 Release
tagged 2011-10-05
Wed Oct 5 02:12:08 CEST 2011 Stephane Popinet <[email protected]>
* Fixed F77 wrappers configure check
Wed Oct 5 01:46:09 CEST 2011 Stephane Popinet <[email protected]>
* New object GfsVariableVOFConcentration
Wed Oct 5 01:23:15 CEST 2011 Stephane Popinet <[email protected]>
* New time-reversed 'concentration' test case
Fri Sep 30 01:27:06 CEST 2011 Daniel Fuster <[email protected]>
* The dimension of the fft is now defined inside the structure of the object
Tue Oct 4 01:39:04 CEST 2011 Release
tagged 2011-10-03