forked from OpenCFD/OpenFOAM-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundation_merge.txt
2848 lines (1991 loc) · 90.9 KB
/
foundation_merge.txt
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
*OK* commit 930d3d43871edf61c296b0d23d26d729adc6d867
Author: Henry <Henry>
Date: Sun Mar 15 22:14:44 2015 +0000
Scripts: Add {} following -I option to xargs
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1573
*OK* commit 7dfdea2cac3c955a174168d3d7671a57cc3ece19
Author: Henry <Henry>
Date: Sun Mar 15 18:49:52 2015 +0000
Time: Adjust the precision of the time-directories only for write-times
Avoids unnecessary increases in precision during intermediate steps for
cases with adjustable time-step which may require very high precision to
represent the time name.
*OK* commit c4bb9bbd5b99938dd017924fe594bfda717c82d6
Author: Henry <Henry>
Date: Sat Mar 14 20:35:36 2015 +0000
Update header
*OK* commit b169f09cd326ef09b90c8f7ea14b7ab5665ac3b2
Author: Henry <Henry>
Date: Sat Mar 14 20:33:51 2015 +0000
Time: Increase the precision the value entry is written in uniform/time
Add check for round-off error causing time reversal
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=815
*OK* commit e20e69992dcfa1d754c69a5ff3f9f1c83df0195a
Author: Henry <Henry>
Date: Fri Mar 13 22:14:08 2015 +0000
shallowWaterFoam: Read hU rather than U to support complex e.g. time-varying BCs
Disadvantage is that the BC values have to be specified in terms of hU
rather than U. The alternative would be to add complex code to map h
and U BCs into the equivalent for hU.
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1566
*OK* commit 3739559e75f45bafa852f109673c79249fd9dfa7
Author: Henry <Henry>
Date: Fri Mar 13 17:56:52 2015 +0000
Replace xargs -i with xargs -I as the -i option is deprecated
*OK* commit de9ebcc299564efbab1602e415d74033c3143e38
Author: Henry <Henry>
Date: Fri Mar 13 14:39:01 2015 +0000
Revert "Revert "Revert "DPMFoam: Multiply the gravitational force by the gas phase fraction"""
This reverts commit c935f83ece33dc55340740a213524a52d675f0e8.
*OK* commit c6f66dae57eb19d480b157ac317c06a842632a24
Author: Henry <Henry>
Date: Fri Mar 13 13:13:42 2015 +0000
stochasticDispersionRAS: Distribute UTurb uniformly
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1568
*OK* commit 408ae9985d9c2482238f86f09e4a41f184e4d00b
Author: Henry <Henry>
Date: Fri Mar 13 11:09:09 2015 +0000
ParaView: Upgrade to 4.3.1
Note that in order to build and install ParaView-4.3.1 lines 653-656
must be removed or commented from file
ThirdParty-dev/ParaView-4.3.1/Qt/Components/CMakeLists.txt
after unpacking the ParaView-4.3.1 source-pack from KitWare. This is
because the file ui_pqExportStateWizard.h referred to in the lines
653-656:
if(PARAVIEW_INSTALL_DEVELOPMENT_FILES)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ui_pqExportStateWizard.h"
DESTINATION "${VTK_INSTALL_INCLUDE_DIR}")
endif()
does not exist and cannot be installed causing the build and
installation to fail.
*OK* commit 1715087fbeff4fcdc47890e720fa0b3f2b325e50
Author: Henry <Henry>
Date: Fri Mar 13 09:52:13 2015 +0000
Random: clean-up
*OK* commit fd069939c1ae27ca4e4bc7fae9ddba328fbe6f56
Author: Henry <Henry>
Date: Fri Mar 13 09:51:33 2015 +0000
rhoCentralFoam: Correct handling of single-cell meshes
Resolves bug-report http://openfoam.org/mantisbt/view.php?id=1548
*OK* commit 43aec8425b312d03a5fb61c78edcfc8f3fc119a7
Author: Henry <Henry>
Date: Wed Mar 11 18:06:04 2015 +0000
TomiyamaLift: Updated coefficient to make the model continuous at EoH = 10.7
Correction provided by Juho Peltola
*OK* commit c935f83ece33dc55340740a213524a52d675f0e8
Author: Henry <Henry>
Date: Wed Mar 11 17:33:14 2015 +0000
Revert "Revert "DPMFoam: Multiply the gravitational force by the gas phase fraction""
This reverts commit f5d26ab69bcfa6b4f65e96f1036a2ba5de235d11.
*OK* commit f5d26ab69bcfa6b4f65e96f1036a2ba5de235d11
Author: Henry <Henry>
Date: Wed Mar 11 15:47:29 2015 +0000
Revert "DPMFoam: Multiply the gravitational force by the gas phase fraction"
This reverts commit 49fbe73ac0220ba8118a221b6bfea6673a234c4a.
*OK* commit 49fbe73ac0220ba8118a221b6bfea6673a234c4a
Author: Henry <Henry>
Date: Wed Mar 11 10:50:32 2015 +0000
DPMFoam: Multiply the gravitational force by the gas phase fraction
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1563
*ALREADY DONE* commit d66408c86acc5d889e60dc57c665c791472fa1ee
Author: Henry <Henry>
Date: Tue Mar 10 19:59:09 2015 +0000
thermoSingleLayer: Revert q back to the working version in OpenFOAM-2.1.x
Revert changes in tutorial to correspond to the version in OpenFOAM-2.1.x
Resolves bug-report http://openfoam.org/mantisbt/view.php?id=1207
*OK* commit 8bed463f4562695b813584c3d06c4f93bc9e384d
Author: Henry <Henry>
Date: Tue Mar 10 19:58:37 2015 +0000
boundaryConditions.dox: Update wall-function entries
*OK* commit 2e2cbe50c6883b5160d7dc5c26eae22c1ae725e7
Author: Henry <Henry>
Date: Tue Mar 10 19:57:42 2015 +0000
TomiyamaLift: Corrected coefficients to correspond exactly to the original paper cited
Resolved bug-report http://www.openfoam.org/mantisbt/view.php?id=1564
*OK* commit 3b4063ee8e0960c5ad9d41648e9af998a5e077c0
Author: Henry <Henry>
Date: Mon Mar 9 17:27:33 2015 +0000
Updated
*OK* commit 10cbc85bb5e5e1951d1057a6ae488e223e57a000
Author: Henry <Henry>
Date: Mon Mar 9 14:33:24 2015 +0000
functionObjects/forces: correct upper-limit for bins
*OK* commit 3f322e8b909886de5188023ee6ca81cae776d465
Author: Henry <Henry>
Date: Mon Mar 9 10:40:51 2015 +0000
functionObjects/forces: limit the bins to handle moving meshes
This approach simply accumulates data outside the range of the bins into
the first or last bin which may be OK for small motions. For larger
motions it may be better if the bins are updated or operate in a
coordinate system attached to the body for solid-body motion.
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1560
*OK* commit d4898bd50599ec6d374a9b622fed0a9abf50020d
Author: Henry <Henry>
Date: Sun Mar 8 21:06:36 2015 +0000
Updated headers
*OK* commit 339c1e2a3d7044ae04afecd6b644f8f49b59ed8d
Author: Henry <Henry>
Date: Sun Mar 8 21:04:38 2015 +0000
MPI configuration: Added support for SYSTEMMPI
Provided by Bruno Santos
Also some general cleaning and update of comment.
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1167
*OK* commit 9df23b529ecaaf4790beb8f835e22788416bc98a
Author: Henry <Henry>
Date: Sun Mar 8 21:02:51 2015 +0000
Time: Improved tolerance used to test time equivalence from Bruno
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=815
*OK* commit 30bbd3e9be9d4d1053cabc2b6714678e7c464381
Author: Henry <Henry>
Date: Sun Mar 8 16:31:32 2015 +0000
Update headers
*OK* commit 85225d817e02455acb1856bcbf2e4f84cf4e0550
Author: Henry <Henry>
Date: Sun Mar 8 16:29:01 2015 +0000
Time: Handle precision changes on start-up and running more robustly
Changes based on patches from and discussions with Bruno Santos
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=815
*OK* commit cb6f22edcf78b1db274d0ade0d1aab6eaa002056
Author: Henry <Henry>
Date: Sat Mar 7 21:47:04 2015 +0000
thermophysicalModels/specie: Added entropy function to equations of state
Added the pressure dependent part of the entropy from the equation of
state to that returned by the thermo entropy function.
TODO: Add entropy defect to the PengRobinsonGas::s(p, T) function.
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1411
*OK* commit d6907d9b48e6983ff0e8f23a766ed1f51b2961bc
Author: Henry <Henry>
Date: Sat Mar 7 11:51:38 2015 +0000
lagrangian: Completed update of phaseProperties to handle specie list mismatch
between liquid and solid mixture composition and the specie lists
defined in the thermodynamics package.
Note this does not change the current limitation that both liquid and
solid mixtures contain ALL the corresponding phase species defined in
the thermodynamics package. However, missing species are included
automatically during construction of phaseProperties.
*OK* commit 4580bcf7d482dbdda79509917409dab568649b07
Author: Henry <Henry>
Date: Fri Mar 6 22:43:39 2015 +0000
Removed redundant code
*OK* commit 0003b4b0081a53b461a7436a160ea60cdee5c2c4
Author: Henry <Henry>
Date: Fri Mar 6 22:38:12 2015 +0000
PaSR: ensure the sqrt operates on a positive number
*OK* commit 6884300a00750593628812d8cec8593d40835859
Author: Henry <Henry>
Date: Fri Mar 6 18:14:18 2015 +0000
lagrangian: Replace dummy "notImplemented" functions with abstract functions making base classes abstract
Make clone functions const and abstract in abstract base classes
Change copy constructors to take const argument
Make private data mutable where necessary
*OK* commit 0aa276f1d8d1f6f5f4222a8fcdf8358ea2ce2738
Author: Henry <Henry>
Date: Thu Mar 5 23:39:40 2015 +0000
simplifiedSiwek: Temporarily define all gaseous species to be present
This hack will be removed when the rewrite of the parcel thermodynamics is complete.
*OK* commit f9d7b982ce7d9153c6e28993c570bf2df8cc054e
Author: Henry <Henry>
Date: Thu Mar 5 23:37:58 2015 +0000
phaseProperties: Handle special cases
No species specified: indicates phase is not present
Some species specified: missing entries assumed to have 0 mass-fraction
*OK* commit e4e64e6eab9bd35200c79e9ad53d773150f213a7
Author: Henry <Henry>
Date: Thu Mar 5 20:12:39 2015 +0000
adjustPhi: Corrected for closed-volume, moving-mesh incompressible simulations
*OK* commit 74dd50aac9fefaf412c6998e248becd4290e9141
Author: Henry <Henry>
Date: Thu Mar 5 18:57:38 2015 +0000
tetOverlapVolume: adjust tolerance
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1347
*OK* commit 3ccbc72aaa27a0bc37a8f6f981da48cdb84a4078
Author: Henry <Henry>
Date: Thu Mar 5 18:57:18 2015 +0000
blockMeshMerge: Adjusted merge-tolerance
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1443
*OK* commit 87b68f99ba3f4768eb3edd9112c24a98a8e6f7f3
Author: Henry <Henry>
Date: Thu Mar 5 18:56:54 2015 +0000
meshCutter: Correct zone of cut-cells
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1524
*OK* commit a2140d21f2ebff5bde56505c67dbaf06c94476a1
Author: Henry <Henry>
Date: Thu Mar 5 17:20:34 2015 +0000
patchInjectionBase: ensure areaFraction is the same on all processors
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1556
*OK* commit b44d2ba049a90a62ed7e178ee88336ebf649b1d0
Author: Henry <Henry>
Date: Thu Mar 5 11:35:49 2015 +0000
lagrangian: Rationalized the handling of multi-component liquids and solids
Ensures consistency between the mixture thermodynamics and composition specifications for the parcels.
Simpler more efficient implementation.
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1395
as well as other consistency issues not yet reported.
*OK* commit c239b0ebe0473b5a37596448f9da0502f75f9cfc
Author: Henry <Henry>
Date: Mon Mar 2 22:30:29 2015 +0000
Update Header
*OK* commit b82911b3cfb8acd4d4112ce6d2b1b63cc5265c24
Author: Henry <Henry>
Date: Mon Mar 2 22:27:39 2015 +0000
BinghamPlastic: Change definition of shear-rate by 1/sqrt(2)
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1552
*OK* commit 8c11106048115bf22f96b65ef478a8b24b56dce6
Author: Henry <Henry>
Date: Mon Mar 2 22:26:58 2015 +0000
qZeta: Use pow3 rather than pow(..., 3)
*OK* commit a12281827e5a404326e7f69cf78f0dfd202dc28b
Author: Henry <Henry>
Date: Mon Mar 2 22:26:24 2015 +0000
Removed temporary Info
*OK* commit 040cabdfe017cd773d9f536a62c989f36657c478
Author: Henry <Henry>
Date: Sun Mar 1 22:17:09 2015 +0000
Minor cleanup
*OK* commit 391d5b9a18fb69314e6585ae0309681b22e52951
Author: Henry <Henry>
Date: Sun Mar 1 22:16:06 2015 +0000
epsilonLowReWallFunction: Debugged and changed handling of G in the low-Re limit to leave unchanged
*OK* commit 239879841974601deb70443a2e76fdee3f5e5220
Author: Henry <Henry>
Date: Sun Mar 1 22:15:12 2015 +0000
LamBremhorstKE: Updated and added support for epsilonLowReWallFunction
*OK* commit 53711ff598abb83bf2ab6f995375966814560a48
Author: Henry <Henry>
Date: Sun Mar 1 17:55:16 2015 +0000
TurbulenceModels: LienCubicKE, ShihQuadraticKE and LienLeschziner models rewritten
The implementation now correspond to the definitions in the readily
available reference:
http://personalpages.manchester.ac.uk/staff/david.d.apsley/specturb.pdf
in which a large number of linear and non-linear models are presented in
a clean and consistent manner. This has made re-implementation and
checking far easier than working from the original references which anyway
are no longer available for the LienCubicKE and ShihQuadraticKE models.
*OK* commit 9b99bbf312d096dc36d35d69492034cf4b3f25b8
Author: Henry <Henry>
Date: Sat Feb 28 16:11:57 2015 +0000
Reynolds stress turbulence models: Add laminar diffusion of R and epsilon
Also use the innerSqr function where appropriate
*OK* commit a145dee287157685e7b57941677a42ea0c542602
Author: Henry <Henry>
Date: Sat Feb 28 16:11:24 2015 +0000
TurbulenceModels: Update non-linear models to use the new innerSqr function
*OK* commit 9d9dbffdadd13a6b5bff3d9b8a0f16105313529f
Author: Henry <Henry>
Date: Sat Feb 28 16:09:55 2015 +0000
symmTensor: Add support for the innerSqr function
which takes the inner product of a symmTensor with itself and returns a symmTensor
*OK* commit 3b11abd26e7c1c0b2bedeffe98a5232ab011915b
Author: Henry <Henry>
Date: Fri Feb 27 19:23:39 2015 +0000
Turbulence models: minor clean-up
*OK* commit cd6f4049efc38c8a97b3f858a480e8ea775b82fa
Author: Henry <Henry>
Date: Fri Feb 27 19:22:53 2015 +0000
non-linear turbulence models: corrected generation term and tested
*OK* commit f2b4e22f903d7197ba41dd6f28164d4dcdd6c17e
Author: Henry <Henry>
Date: Fri Feb 27 18:13:30 2015 +0000
ShihQuadraticKE: Rewritten and tested on the boundaryWallFunctions and pitzDaily cases
*OK* commit 6f3a93c98695c69acd07181bb0685d41cd33197f
Author: Henry <Henry>
Date: Fri Feb 27 11:29:45 2015 +0000
ShihQuadraticKE: renamed from nonlinearKEShih and added reference
*OK* commit d99958d4240988200f317064ed7aa8f31b431ecd
Author: Henry <Henry>
Date: Thu Feb 26 20:03:48 2015 +0000
TurbulenceModels: Updated documentation for incompressible models
*OK* commit 763ecdc0f473d6d862067e4f4821ee2768dc4d84
Author: Henry <Henry>
Date: Thu Feb 26 17:00:36 2015 +0000
rhoCentralFoam: Corrected the BCs for positive (outgoing) fluxes
Resolves bug-report http://openfoam.org/mantisbt/view.php?id=1548
*OK* commit c9de6d8ca5c6d093865fb16c806c6622f9abf30c
Author: Henry <Henry>
Date: Wed Feb 25 23:29:33 2015 +0000
Corrected warning message
*OK* commit 9054c7e78c3dfee00f5a11423eedbb393f4f4346
Author: Henry <Henry>
Date: Wed Feb 25 20:51:37 2015 +0000
cyclicACMIPolyPatch: Hacked to avoid sigSegv during decomposition
Resolves bug report http://www.openfoam.org/mantisbt/view.php?id=1450
*OK* commit 0f49a15c35136baee5a6183a0bc3a59d7780cbaf
Author: Henry <Henry>
Date: Wed Feb 25 18:18:23 2015 +0000
primitiveMeshTools: VSMALL -> ROOTVSMALL
Proposed resolution of http://www.openfoam.org/mantisbt/view.php?id=1509
*OK* commit e980cd5a60666a452486138f21efb3847def0094
Author: Henry <Henry>
Date: Wed Feb 25 16:54:05 2015 +0000
CrankNicolsonDdtScheme: Clarified the relationship between the
off-centre coefficient and the coefficient for the implicit par
*OK* commit 0577cdb3cd463c26c836f86f013a5ee3c8642285
Author: Henry <Henry>
Date: Wed Feb 25 12:20:12 2015 +0000
rhoCentralDyMFoam: Add support for morphing-meshes and provide movingCone tutorial case
*OK* commit de2c2fb007c4c6f0936c036270e5cf633d775d71
Author: Henry <Henry>
Date: Wed Feb 25 10:57:06 2015 +0000
Rationalize position searching and add cell->tet decomposition as the default cell-search algorithm
Resolves issues with probes and findRefCell for meshes in which all cell face-pyramids are positive.
*OK* commit 25ab8a1a07a4a2f4dd55f243dcd2d61d2ea8426a
Author: Henry <Henry>
Date: Wed Feb 25 10:55:51 2015 +0000
codingStyleGuide: Minor updates
*OK* commit e01696bfb5c8bf3434d6bd030ae4b51d37a5def0
Author: Henry <Henry>
Date: Wed Feb 25 10:55:33 2015 +0000
liquidMixtureProperties: Improve comments
*OK* commit 99965b01c4fd56cf8c72d2d3e012b53e55d02a68
Author: Henry <Henry>
Date: Wed Feb 25 10:54:50 2015 +0000
constTransport: Handle the case of nMoles = 0 in += and -= operators
Resolves bug-report http://openfoam.org/mantisbt/view.php?id=1348
*OK* commit d5970175a5bb7dd885dbd6d8c4b09aad87a33db9
Author: Henry <Henry>
Date: Mon Feb 23 18:57:57 2015 +0000
heThermo: Correct kappaEff
*OK* commit 8fa5a2b76aa9716ee486fbd5bc4c2d669893a4c4
Author: Henry <Henry>
Date: Mon Feb 23 18:57:33 2015 +0000
constTransport: Correct kappa
*OK* commit d2fbdcb9a9f630488d6e95cb4c99d3256bad80f9
Author: Henry <Henry>
Date: Mon Feb 23 08:44:18 2015 +0000
Added support for gcc-5.0.0
Tested with snapshot gcc-5-20150215.tar.bz2
*OK* commit 0ae18335f69cd13729a1e034d5311703e6177757
Author: Henry <Henry>
Date: Sun Feb 22 16:53:33 2015 +0000
tutorials/compressible/sonicDyMFoam/movingCone: sonic version of the pimpleDyMFoam/movingCone tutorial
*OK* commit 5d3bb289940813fe2c2ae79339211825e6a0166f
Author: Henry <Henry>
Date: Sun Feb 22 16:52:21 2015 +0000
tutorials: remove unnecessary under-relax fields entry
*OK* commit 64ec856d6091612c2284941788767b9536cf70c3
Author: Henry <Henry>
Date: Sun Feb 22 16:50:48 2015 +0000
rhoEqn: Do not constrain; would violate conservation
*OK* commit 51abd7e807dc3148517e0b2c53f4bb7fa08ec018
Author: Henry <Henry>
Date: Sun Feb 22 15:29:37 2015 +0000
CrankNicolsonDdtScheme: Added "see also"
*OK* commit 5ee73b2e9bb7ad6b67dacf63c30d3ec1104d493a
Author: Henry <Henry>
Date: Sun Feb 22 15:25:32 2015 +0000
CrankNicolsonDdtScheme: Add documentation
*OK* commit fa346ae539e7cea3404843461b98b31b7a36e63e
Author: Henry <Henry>
Date: Sun Feb 22 12:53:34 2015 +0000
tutorials/multiphase/interDyMFoam/ras/floatingObject: Update to demonstrate MULES with Crank-Nicolson
*OK* commit cf07fdc957fdd575ef24e90b91dcba138ddfb91c
Author: Henry <Henry>
Date: Sun Feb 22 12:14:46 2015 +0000
lagrangian: Improved handling of binary transfers
Now using memory offsets to calculate transfer block sizes rather than
sum of 'sizeof' to ensure word alignment is accounted for
*OK* commit 5daf22d9d73ea9f1a4e3a892e7aa21fc998f32af
Author: Henry <Henry>
Date: Sun Feb 22 12:13:19 2015 +0000
interFoam/alphaEqn: Corrected handling of the off-centreing coefficient for Crank-Nicolson
*OK* commit ff8978dba5d34498b58a80e87c3d461cdd1ccefc
Author: Henry <Henry>
Date: Sun Feb 22 10:25:30 2015 +0000
interFoam/alphaEqn: Updated phiCN
*OK* commit 9b7079ff8f96ab4ed4a3d9d855c94fc80f3633fa
Author: Henry <Henry>
Date: Sat Feb 21 21:41:48 2015 +0000
timeVaryingMappedFixedValueFvPatchField: Updated documentation
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1545
*OK* commit 9fc5f5c1db6dd8434bd7238272f6765f084cf4d2
Author: Henry <Henry>
Date: Sat Feb 21 21:39:59 2015 +0000
interFoam/alphaEqn: Update explicit corrector to use the Crank-Nicolson flux
*OK* commit 5f24612805525a8f3bbf26e2a73e5017c3281595
Author: Henry <Henry>
Date: Sat Feb 21 21:39:01 2015 +0000
icoFoam/nonNewtonianIcoFoam: Update to use pisoControl
*OK* commit 47482b9246ceb8252e727c315c5a02930686e26a
Author: Henry <Henry>
Date: Fri Feb 20 22:47:51 2015 +0000
LTSinterFoam: test for localEuler as a valid scheme in the new alphaEqn
*OK* commit 218875bf401389262da828a896f7e7633df1480d
Author: Henry <Henry>
Date: Fri Feb 20 17:24:14 2015 +0000
DSMC: Rationalization and addition of mapping suppor
*OK* commit 5cd0083db014cc1cc9f6a4462735eaa2bbd1ed3b
Author: Henry <Henry>
Date: Fri Feb 20 16:09:32 2015 +0000
Update headers
*OK* commit 5fca41e1a78c0107213e093e6dfce0e3b89a2526
Author: Henry <Henry>
Date: Fri Feb 20 16:08:56 2015 +0000
CrankNicolsonDdtScheme: provide access to the off-centreing coefficien
*OK* commit f78d33b634c35394944d7fb651ba3cb4f64b2a1b
Author: Henry <Henry>
Date: Fri Feb 20 15:59:43 2015 +0000
interFoam family: Add support for MULES-bounded Crank-Nicolson 2nd-order ddt(alpha)
This is an experimental feature demonstrating the potential of MULES to
create bounded solution which are 2nd-order in time AND space.
Crank-Nicolson may be selected on U and/or alpha but will only be fully
2nd-order if used on both within the PIMPLE-loop to converge the
interaction between the flux and phase-fraction. Note also tha
Crank-Nicolson may not be used with sub-cycling but all the features of
semi-implicit MULES are available in particular MULESCorr and
alphaApplyPrevCorr.
Examples of ddt specification:
ddtSchemes
{
default Euler;
}
ddtSchemes
{
default CrankNicolson 0.9;
}
ddtSchemes
{
default none;
ddt(alpha) CrankNicolson 0.9;
ddt(rho,U) CrankNicolson 0.9;
}
ddtSchemes
{
default none;
ddt(alpha) Euler;
ddt(rho,U) CrankNicolson 0.9;
}
ddtSchemes
{
default none;
ddt(alpha) CrankNicolson 0.9;
ddt(rho,U) Euler;
}
In these examples a small amount of off-centering in used to stabilize
the Crank-Nicolson scheme. Also the specification for alpha1 is via the
generic phase-fraction name to ensure in multiphase solvers (when
Crank-Nicolson support is added) the scheme is identical for all phase
fractions.
*OK* commit 514f90575809e97c54636854eb9fb39c5873a362
Author: Henry <Henry>
Date: Thu Feb 19 19:07:14 2015 +0000
Updated header
*OK* commit e593fef659bcd71028e0e66a70510de2c34888e2
Author: Henry <Henry>
Date: Thu Feb 19 19:05:17 2015 +0000
potentialFoam: Added new method to estimate the static pressure field from the velocity
Uses a form of the Euler equation in which only variation along the streamlines is considered
*OK* commit f43abd9f3b9d3e5463b819ad0dee1713034a5f8f
Author: Henry <Henry>
Date: Thu Feb 19 09:56:50 2015 +0000
tutorials/basic/laplacianFoam/flange/Allrun: Updated for consistent outpu
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1543
*OK* commit 6be514684a95b04d79cdaa773d54240d63fbef77
Author: Henry <Henry>
Date: Thu Feb 19 08:39:32 2015 +0000
tutorials: rationalized log
*OK* commit 0ca9a1fb092f7ce9d88c82e24917d1c51b54fa81
Author: Henry <Henry>
Date: Wed Feb 18 21:24:09 2015 +0000
Integer read: use strtoimax rather than strtol and check explicitly for overflow of int32_
*OK* commit 4db6925cee7edfff101660fc853f0de354f544d9
Author: Henry <Henry>
Date: Wed Feb 18 21:21:22 2015 +0000
Thermodyamics: Add support for multiphase
Pass the phase-name through hierarchy
Add phase-name to variables
Split basicCombustionMixture
Update applications accordingly
*OK* commit 9cd665988d1daaf15615ff35a2a2f72184b8a50d
Author: Henry <Henry>
Date: Wed Feb 18 10:01:05 2015 +0000
tutorials/multiphase/interPhaseChangeFoam/cavitatingBullet: Added a potentialFoam initializer step
*OK* commit b44acdb03e89434037f534a3847153d5aa730f51
Author: Henry <Henry>
Date: Wed Feb 18 08:12:01 2015 +0000
PtrList: Check for EOF while reading to avoid run-on and infinite loop when reading list of dictionaries.
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1538
*OK* commit 3482e22bc61e404720f902a06a31c0741b605959
Author: Henry <Henry>
Date: Tue Feb 17 23:59:59 2015 +0000
tutorials: corrected comments in snappyHexMeshDic
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1541
*OK* commit 16c7318aee6b22df4b152dfbe59798ead5db0fb3
Author: Henry <Henry>
Date: Tue Feb 17 23:59:21 2015 +0000
outletInletFvPatchField: store Field<scalar> rather than fvsPatchField<scalar> for phip
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1539
*OK* commit f5c06844639d9b2b5673952ba9f6a13129a4cd5b
Author: Henry <Henry>
Date: Tue Feb 17 23:59:13 2015 +0000
Updated header
*OK* commit e9f2981d85009025df0c4051c5fa7a37330ef994
Author: Henry <Henry>
Date: Tue Feb 17 23:58:44 2015 +0000
driftFluxFoam: Updated base-class of incompressibleTwoPhaseInteractingMixture
*OK* commit 76c7f68ac10da8a0bad014797e5e6845bf336554
Author: Henry <Henry>
Date: Tue Feb 17 17:25:26 2015 +0000
fluidThermo: Add compressibleTransportModel as base-class
Needed to create generic compressible turbulence model library
*OK* commit 3429d2dd807110b0885f2d319e6939f01fba087c
Author: Henry <Henry>
Date: Tue Feb 17 15:06:31 2015 +0000
chtMultiRegionSimpleFoam: Support simpler input for rhoMax and rhoMin
*OK* commit c328c5468013f7b4a9dbc849e463f7d8f4c27b45
Author: Henry <Henry>
Date: Tue Feb 17 10:55:02 2015 +0000
tutorials: Simplify rhoMax and rhoMin specification
*OK* commit b0bd25ad3217072043ab30893429a9bb67f5eede
Author: Henry <Henry>
Date: Tue Feb 17 10:49:07 2015 +0000
tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit: simplify rhoMax and rhoMin specification
*OK* commit 5804b901c5c7ca0159bbd9250ea195125895411a
Author: Henry <Henry>
Date: Tue Feb 17 10:48:36 2015 +0000
RectangularMatrix: Corrected documentation
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1535
*ALREADY DONE* commit c7f5b4ce171f211a4b4498e05ce7f4ed948ef7ac
Author: Henry <Henry>
Date: Tue Feb 17 10:47:34 2015 +0000
applications/solvers: Update trans-sonic option in pEqns to by consistent with sonic-solvers
*OK* commit 50a2e36cf84d46ec76f3f73602d12dc10b9b92e5
Author: Henry <Henry>
Date: Tue Feb 17 10:16:01 2015 +0000
dimensionedType: Extend lookupOrDefault to handle any form of dimensioned type inpu
e.g.
Not specified: default used.
Fully specified: rhoMax rhoMax [ 1 -3 0 0 0 ] 2.0;
Without name: rhoMax [ 1 -3 0 0 0 ] 2.0;
Value only: rhoMax 2.0;
*ALREADY DONE* commit da42029f98a3792f6c8ca693bcf85c4a56a41714
Author: Henry <Henry>
Date: Mon Feb 16 22:16:50 2015 +0000
seulex: Reduce the underflow time-step
*OK* commit cc6341a9d3cf400b7a580d041033bf853df74746
Author: Henry <Henry>
Date: Mon Feb 16 22:16:21 2015 +0000
int??IO: handle overflow errors
*OK* commit 9617b8f55962f755bf87d91cec7eefc83a0f0f82
Author: Henry <Henry>
Date: Mon Feb 16 22:15:54 2015 +0000
surfaceCheck: Make -blockMesh output easier to parse
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1534
*OK* commit e8e0c997906ed060efcf7eb2a0b69a333b7b780c
Author: Henry <Henry>
Date: Mon Feb 16 21:48:00 2015 +0000
DyM solvers: rationalized handling of time update
*OK* commit 74990ee91545fc8586c1e24ae78535c4d0327ebb
Author: Henry <Henry>
Date: Mon Feb 16 21:47:15 2015 +0000
Rationalized sprayFoam family of solvers and added sprayDyMFoam
*OK* commit 5a9fc9a3e91d9118e5e0bc62a038d99820b50903
Author: Henry <Henry>
Date: Mon Feb 16 21:45:28 2015 +0000
Rationalized pEqn in sprayFoam solvers
*OK* commit cec56de03e14ee67bf1e9b26140225cb91f1a0ac
Author: Henry <Henry>
Date: Mon Feb 16 21:43:40 2015 +0000
Compressible solvers: rhoMax and rhoMin now optional and may be supplied without dimensions
*OK* commit cd5ade6c4404312c69b29c58d180a4802632f44e
Author: Henry <Henry>
Date: Mon Feb 16 21:42:09 2015 +0000
compressibleInterDyMFoam and interPhaseChangeDyMFoam: cache divU before time advancement to ensure the old-time meshPhi are used to make phi absolute
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1531
*OK* commit f99884de0052105fb9b18a96185139ccc1160de6
Author: Henry <Henry>
Date: Mon Feb 16 09:24:01 2015 +0000
turbulenceModels/RAS/kOmegaSSTSAS/kOmegaSSTSAS: Added the k-omega-SST-SAS model
Egorov, Y., & Menter F.R. (2008).
Development and Application of SST-SAS Model in the DESIDER Project.
Advances in Hybrid RANS-LES Modelling,
Notes on Num. Fluid Mech. And Multidisciplinary Design,
Volume 97, 261-270.
*OK* commit 913e515fef3d327e85ff712159431ad499a4fdd1
Author: Henry <Henry>
Date: Mon Feb 16 09:22:59 2015 +0000
turbulenceModels/LES/dynamicLagrangian/dynamicLagrangian: Removed unused declaration
*OK* commit af43b377c92089590281f1d139256897acbc6f31
Author: Henry <Henry>
Date: Sat Feb 14 22:50:59 2015 +0000
refineWallLayer: Rationalize and add support for operating on a list of patch name regular expressions
Resolves bug-report http://openfoam.org/mantisbt/view.php?id=1525
*OK* commit e7777787624dafddf3ff7e6723b47fa4cf460d64
Author: Henry <Henry>
Date: Sat Feb 14 22:50:28 2015 +0000
polyMeshModifier: Corrected member function documentation
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1143
*OK* commit cec7f52d9657fe3f5e9c92d9c06dcd5dcd224f6d
Author: Henry <Henry>
Date: Sat Feb 14 17:19:35 2015 +0000
Update header
*OK* commit de6ef3d55165b587eac19e7657a6f5a779143d9f
Author: Henry <Henry>
Date: Sat Feb 14 17:19:01 2015 +0000
grpIcoRASBoundaryConditions -> grpRASBoundaryConditions
*ALREADY DONE* commit 885125e3338f9f691141f6497385e5d6864ec38e
Author: Henry <Henry>
Date: Sat Feb 14 17:11:23 2015 +0000
atomicWeights: Put in ascending order
*ALREADY DONE* commit 7dfad7a74f63539ef0005671625a4f9c43367f70
Author: Henry <Henry>
Date: Sat Feb 14 17:09:29 2015 +0000
atomicWeights: Put in ascending order
*ALREADY DONE* commit 9ac15414bf7004b67d67b8c12da1e95571bfcf7c
Author: Henry <Henry>
Date: Sat Feb 14 17:09:21 2015 +0000
Update header
*ALREADY DONE* commit e44376d3638a3186a7db7334acd28a9d44a1ae5a
Author: Henry <Henry>
Date: Sat Feb 14 17:09:07 2015 +0000
Correct Info message
*OK* commit f9a8cb7cfc66608534ba47eb6997d673d1cbf58d
Author: Henry <Henry>
Date: Sat Feb 14 16:43:27 2015 +0000
dynamicLagrangian: Added template include
*OK* commit 74a8a6f99634c2f6642dfa5ac35d4039f67c853b
Author: Henry <Henry>
Date: Sat Feb 14 16:04:01 2015 +0000
doc/Doxygen/Allwmake: Automated the setting of FOAM_ONLINE_REPO
Patch provided by Bruno Santos
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1528
*OK* commit d9cc06f9f3e79af73c6772f150e4c77d2ad18094
Author: Henry <Henry>
Date: Sat Feb 14 15:58:09 2015 +0000
solidBodyMotionFunctions/SDA: Corrected the "See also"
Resolved bug-report http://www.openfoam.org/mantisbt/view.php?id=1529
*OK* commit 0ddae8ba2cdbeac4092ed0755df47d3a6e64ced1
Author: Henry <Henry>
Date: Sat Feb 14 15:52:08 2015 +0000
turbulenceModels/LES/dynamicLagrangian: Added the Lagrangian averaged form of the dynamic Smagorinsky eddy-viscosity SGS model for LES
*OK* commit f58fd1427100727c8ff6f82d76e56fd836e6274c
Author: Henry <Henry>
Date: Sat Feb 14 13:10:15 2015 +0000
Corrected capitalization of Doxygen documentation comments
*OK* commit fb68661de82834702f7df393522e399e451eba72
Author: Henry <Henry>
Date: Sat Feb 14 13:08:08 2015 +0000
turbulenceModels/LES/dynamicKEqn/dynamicKEqn: Added dynamic version of the one-equation SGS model
*ALREADY DONE* commit 3f7e377240b6eb9d4513f39e5eedce339b7ae519
Author: Henry <Henry>
Date: Sat Feb 14 11:07:57 2015 +0000
Minor correction
*OK* commit cdadf4865de4808d6fe5c2a7eb5f5deaefe83b66
Author: Henry <Henry>
Date: Sat Feb 14 11:03:37 2015 +0000
potentialFoam: Solve for velocity potential named Phi rather than using the pressure field for this purpose
The Phi field is read if available otherwise created automatically with
boundary conditions obtained automatically from the pressure field if
available (with optional name) otherwise inferred from the velocity
field. Phi Laplacian scheme and solver specification are required. See
tutorials for examples.
*OK* commit 2edacf0cebf3813b5f50802a66789401af4ded39
Author: Henry <Henry>
Date: Sat Feb 14 10:59:29 2015 +0000
Correct Doxygen multiline comments
*OK* commit 0c86872fd8d8632a96c4eafe574421ade53a8e7a
Author: Henry <Henry>
Date: Sat Feb 14 10:13:55 2015 +0000
tutorials: removed empty files
*OK* commit 4c9897879e344b9156d1766cde17db7c5748389b
Author: Henry <Henry>
Date: Sat Feb 14 10:13:11 2015 +0000
tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/topoSetDict.1: further correction to avoid duplicate registration
*OK* commit 31fd2512fb9bdb2716b432bb7571a8de247351cf
Author: Henry <Henry>
Date: Fri Feb 13 21:40:45 2015 +0000
GeometricField: Do not transfer registration of a GeometricField to a copy unless it is being transferred from a tmp
This avoids loosing the registration of non-tmp fields
*ALREADY DONE* commit aee9511710d0c77ddf7c20b0627d4b144ce2b55b
Author: Henry <Henry>
Date: Fri Feb 13 21:39:48 2015 +0000
porousInterFoam is no longer needed
Use interFoam with fvOptions
*OK* commit f17071cf7040ad7250561e7d435c2ad27e252d5e
Author: Henry <Henry>
Date: Fri Feb 13 12:41:34 2015 +0000