Commit Graph

81 Commits

Author SHA1 Message Date
mattijs
129ce922e2 ENH: Use new time looping structure 2010-02-05 16:26:09 +00:00
andy
d1874a0529 STYLE: removed spurious //'s 2010-01-28 12:50:27 +00:00
sergio
0b96ae5409 chtMultiRegionFoam files update 2010-01-28 12:28:18 +00:00
sergio
37c3248471 chtMultiRegion modification using Diff time limite 2010-01-27 17:11:47 +00:00
Mark Olesen
fa93ce8cd7 coding style adherence
- markup codingStyleGuide.org examples so they actually indent correctly

- use 'Info<<' as per codingStyleGuide instead of 'Info <<'
2009-11-27 15:39:14 +01:00
mattijs
e779953746 steady state cht solver; switched default coupled bc to be fixedValue 2009-11-17 11:41:05 +00:00
graham
9221793088 Changing
deltaT().value() to deltaTValue()
and
    deltaT0().value() to deltaT0Value()
across the whole code - faster to return especially if being used
often, in each call to a submodel for example.
2009-10-21 16:36:07 +01:00
mattijs
24479b6102 use prfValue 2009-10-09 17:16:37 +01:00
mattijs
f2ae950de6 initialise K with alphaEff 2009-10-02 17:16:39 +01:00
mattijs
ed78938873 renamed b.c. 2009-09-15 18:40:49 +01:00
mattijs
876135a83d forcing scheduling calculation 2009-08-04 16:42:54 +01:00
Chris Greenshields
2f3016173e Modified Description entries for documenting purposes 2009-07-22 14:08:02 +01:00
henry
d76820dc57 Changed g from being read from environmentalProperties to being read directly as a
uniformDimensionedVectorField.
2009-07-08 17:09:51 +01:00
henry
4439183d96 Corrected handling of the wall BCs of p for buoyant flows. 2009-07-07 22:56:02 +01:00
andy
0df64ea1d3 merge after conflict resolution 2009-07-01 10:59:48 +01:00
andy
9e4fcd1844 clean-up of #include files 2009-07-01 10:50:41 +01:00
henry
5989bcd14d Reformatted. 2009-06-26 17:28:25 +01:00
henry
ac02c60442 Changed Boussinesq solvers to use p rather than pd and added hotRoom tutorial cases for them. 2009-06-26 17:19:09 +01:00
andy
7d73dd3171 updates for new thermo and general code tidying 2009-06-15 15:36:57 +01:00
andy
3c642ebdc2 updates for new thermo framework 2009-06-15 10:33:20 +01:00
henry
7cc81b32b8 Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-06-11 22:48:08 +01:00
henry
4465d20ac6 Changed pd -> p. 2009-06-11 22:48:05 +01:00
andy
42c240b97e cosmetics/code-tidying 2009-06-11 17:09:19 +01:00
mattijs
041c48cc3a changed comment 2009-06-02 15:11:45 +01:00
mattijs
dcc957147b solving p instead of pd; parallel coupled b.c. 2009-06-02 14:55:33 +01:00
andy
71a73d9490 removing duplicate file 2009-05-22 11:57:05 +01:00
mattijs
6c1fe9b4b6 reference instead of copy 2009-04-23 14:42:52 +01:00
mattijs
7c093d7aaa indentation corrected 2009-04-23 14:42:18 +01:00
mattijs
2aed2a2a9b moved hEqn out of inner loop for consistency 2009-04-23 14:41:59 +01:00
mattijs
89c66aa016 unused option 2009-04-23 14:41:18 +01:00
mattijs
adc012cab8 renamed ghf to prevent duplicate regIOobject 2009-04-17 12:23:05 +01:00
mattijs
c42f04e843 multi-region directMapped 2009-04-16 18:45:01 +01:00
mattijs
fc09d219af indentation 2009-03-26 22:32:10 +00:00
mattijs
d6087d356f regions without faces 2009-03-10 20:24:38 +00:00
Mark Olesen
4b60453cf1 use while (runTime.loop() { .. } where possible in solvers
- change system/controlDict to use functions {..} instead of functions (..);
  * This is internally more efficient
- fixed formatting of system/controlDict functions entry

- pedantic change: use 'return 0' instead of 'return(0)' in the applications,
  since return is a C/C++ keyword, not a function.
2009-02-18 08:57:10 +01:00
Mark Olesen
19aa23d707 Merge commit 'OpenCFD/master' into olesenm 2009-02-17 16:35:00 +01:00
andy
c799fb0014 renamed to be consistent with new solver naming convention 2009-02-17 12:27:38 +00:00
andy
a5ab4126d8 renamed to be consistent with new solver naming convention 2009-02-17 12:09:27 +00:00
Mark Olesen
c2256e51f3 change solvers, utilities, etc. to use while (..) time-looping idiom
- this (now deprecated) idiom:
      for (runTime++; !runTime.end(); runTime++) { ... }
  has a few problems:
    * stop-on-next-write will be off-by-one (ie, doesn't work)
    * function objects are not executed on exit with runTime.end()
  Fixing these problems is not really possible.

- this idiom
      while (runTime.run())
      {
          runTime++;
          ...
      }
  works without the above problems.
2009-02-17 08:47:42 +01:00
andy
2d8ec16d6c update 2009-02-12 10:11:57 +00:00
andy
dfe1df4c61 new solver 2009-02-11 19:49:38 +00:00
andy
a7f68e85ef restructuring 2009-02-11 18:49:54 +00:00
andy
d12bf72ddc output min/max T as scalar 2009-02-11 18:39:34 +00:00
Mark Olesen
d3ec38f0aa Merge commit 'OpenCFD/master' into olesenm 2009-02-06 10:40:19 +01:00
andy
f903801502 forgot to commit new files 2009-02-05 15:36:56 +00:00
andy
a83588ec11 using surfaceScalarField constructor to name field 2009-02-04 10:25:31 +00:00
andy
efdb3fd3fa improved flux calcs + more clean-up 2009-02-04 10:21:23 +00:00
andy
61e1c0c1ea major clean-up 2009-02-04 09:46:26 +00:00
andy
6d3a272372 applying improved flux-velocity correspondence 2009-02-03 18:24:23 +00:00
andy
75f6168b0b Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-02-03 17:19:58 +00:00