Difference between revisions of "G"

From OpenFOAMWiki
Line 3: Line 3:
  
 
= Example Input File =
 
= Example Input File =
<code>
 
 
  <nowiki>
 
  <nowiki>
 
/*--------------------------------*- C++ -*----------------------------------*\
 
/*--------------------------------*- C++ -*----------------------------------*\
Line 29: Line 28:
  
 
// ************************************************************************* //
 
// ************************************************************************* //
</code>
+
</nowiki>
  
 
= Commands =
 
= Commands =
Line 50: Line 49:
 
=== Entry Value ===
 
=== Entry Value ===
  
<code> value          ( 0 0 -9.8065 );  
+
<code> value          ( 0 0 -9.8065 ); </code>
</nowiki>
+
</code>
+
  
  
Line 58: Line 55:
  
 
* The comment header at the top is not necessary.
 
* The comment header at the top is not necessary.
<code>
 
 
  <nowiki>
 
  <nowiki>
 
/*--------------------------------*- C++ -*----------------------------------*\
 
/*--------------------------------*- C++ -*----------------------------------*\
Line 67: Line 63:
 
|      o          |                                                          |
 
|      o          |                                                          |
 
\*---------------------------------------------------------------------------*/
 
\*---------------------------------------------------------------------------*/
 
 
</nowiki>
 
</nowiki>
</code>
+
 
  
 
* Remember to terminate all commands with a ; character.
 
* Remember to terminate all commands with a ; character.

Revision as of 15:17, 20 June 2016

1 Description

Specifies gravitational acceleration.

2 Example Input File

/*--------------------------------*- C++ -*----------------------------------*\
|       o          |                                                          |
|    o     o       | OpenFOAM (Engys Edition):                                |
|   o   O   o      | Version: 2.2_engysEdition-beta                           |
|    o     o       | Web:     http://www.engys.com                            |
|       o          |                                                          |
\*---------------------------------------------------------------------------*/

FoamFile
{
    version     2.0;
    format      binary;
    class       dictionary;
    location    "../constant";
    object      g;
}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [ 0 1 -2 0 0 0 0 ];

value           ( 0 0 -9.8065 );

// ************************************************************************* //

3 Commands

3.1 dimensions

Required

Specifies the dimensions of units for gravitational acceleration.

3.1.1 Entry Value

dimensions [ 0 1 -2 0 0 0 0 ];

3.2 value

Required

Specifies the value of gravitational acceleration as a vector quantity.

3.2.1 Entry Value

value ( 0 0 -9.8065 );


4 User Nodes

  • The comment header at the top is not necessary.
/*--------------------------------*- C++ -*----------------------------------*\
|       o          |                                                          |
|    o     o       | OpenFOAM (Engys Edition):                                |
|   o   O   o      | Version: 2.2_engysEdition-beta                           |
|    o     o       | Web:     http://www.engys.com                            |
|       o          |                                                          |
\*---------------------------------------------------------------------------*/


  • Remember to terminate all commands with a ; character.