FrontStartUp

Initialize basic front data and functions.

Synopsis

#include "FronTier.h" 

void FrontStartUp(Front*, F_BASIC_DATA*);

Input Parameters

Front*- pointer to operating front
F_BASIC_DATA* - containing basic data for front initialization

Input Data Structure

Data structure of F_BASIC_DATA: struct _F_BASIC_DATA { int dim; /* Dimension */ float L[MAXD],U[MAXD]; /* Lower and upper bounds of domain */ int gmax[MAXD]; /* Number of meshes */ int boundary[MAXD][2]; /* Boundary types */ size_t size_of_intfc_state; /* Size of state of interface points */ }; typedef struct _F_BASIC_DATA F_BASIC_DATA;

Notes

Examples

Example0