-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the free convection case with latest developments.
- Loading branch information
Showing
10 changed files
with
274 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ FoamFile | |
|
||
ddtSchemes | ||
{ | ||
default Euler; | ||
default Euler; | ||
} | ||
|
||
gradSchemes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
========= | | ||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox | ||
\\ / O peration | | ||
\\ / A nd | Web: www.OpenFOAM.org | ||
\\/ M anipulation | | ||
------------------------------------------------------------------------------- | ||
Description | ||
Writes graph data for specified fields along a line, specified by start | ||
and end points. | ||
\*---------------------------------------------------------------------------*/ | ||
|
||
start ( 0.0 0.05 0.0005 ); | ||
end ( 0.2 0.05 0.0005 ); | ||
fields ( T ); | ||
region solid; | ||
writeControl writeTime; | ||
|
||
// Sampling and I/O settings | ||
#includeEtc "caseDicts/postProcessing/graphs/sampleDict.cfg" | ||
|
||
// Override settings here, e.g. | ||
setConfig | ||
{ | ||
type midPoint; //face; | ||
axis x; | ||
} | ||
|
||
// Must be last entry | ||
#includeEtc "caseDicts/postProcessing/graphs/graph.cfg" | ||
|
||
// ************************************************************************* // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/*--------------------------------*- C++ -*----------------------------------*\ | ||
========= | | ||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox | ||
\\ / O peration | | ||
\\ / A nd | Web: www.OpenFOAM.org | ||
\\/ M anipulation | | ||
------------------------------------------------------------------------------- | ||
Description | ||
Writes graph data for specified fields along a line, specified by start | ||
and end points. | ||
\*---------------------------------------------------------------------------*/ | ||
|
||
start ( 0.0 0.055 0.0005 ); | ||
end ( 0.2 0.055 0.0005 ); | ||
fields ( T ); | ||
region solid; | ||
writeControl writeTime; | ||
|
||
// Sampling and I/O settings | ||
#includeEtc "caseDicts/postProcessing/graphs/sampleDict.cfg" | ||
|
||
// Override settings here, e.g. | ||
setConfig | ||
{ | ||
type midPointAndFace; | ||
axis x; | ||
} | ||
|
||
// Must be last entry | ||
#includeEtc "caseDicts/postProcessing/graphs/graph.cfg" | ||
|
||
// ************************************************************************* // |
Oops, something went wrong.