|
Setting the Boundary Conditions
|
Previous Top Next |
|
|
| [Note: The precise meaning of the NATURAL boundary condition depends on the PDE for which the boundary condition is being specified. Details are discussed in the Chapter "Natural Boundary Conditions." ]
|
|
|
| REGION 1 'box' { the bounding box }
|
| START(-1,-1)
|
| { Phi=0 on base line: }
|
| VALUE(Phi)=0 LINE TO(1,-1)
|
| { normal derivative =0 on right side: }
|
| NATURAL(Phi)=0 LINE TO (1,1)
|
| { Phi = 1 on top: }
|
| VALUE(Phi)=1 LINE TO (-1,1)
|
| { normal derivative =0 on left side: }
|
| NATURAL(Phi)=0 LINE TO CLOSE
|
|
|
|
|
| [Note: Other boundary condition forms are allowed. See the Reference chapter "Sections | Boundaries".]
|