Defining the Advance Coefficient

In this steady state simulation, you specify a range of J values using two field functions: J and i. The field function, i, specifies the iteration on which the value of J changes.

In this tutorial, the starting value of J is 0.6. The value of J increases by 0.2 every 501 iterations. This number of iterations is sufficient for the solution to converge for each value of J.

First, define the field function i:

  1. Create a custom scalar field function and rename it to i.
  2. Select the i node and set the following properties:
    Property Setting
    Definition floor ($Iteration/501)
    Function Name i

Create and define the field function for J:

  1. Create a custom scalar field function and rename it to J.
  2. Select the J node and set the following settings:
    Property Setting
    Definition 0.6 + 0.2 * $i
    Function Name J

Proceed to create field functions that supply the parameters for the advance velocity:

  1. Create three custom scalar field functions and name them n, D, and VA respectively.
  2. Set the following properties for the field functions:
    Field Function Property Setting
    n Definition 15
    Function Name n
    D Definition 0.25
    Function Name D
    VA Definition $J * $n * $D
    Function Name VA