|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<BoundaryCondition>
jabble.BoundaryCondition
public enum BoundaryCondition
A boundary condition, such as periodic, Cauchy, ...
| Enum Constant Summary | |
|---|---|
CAUCHY
Cauchy boundary condition. |
|
CUSTOM
Default boundary condition - the framework will pass the boundary to the Evolver to implement its own boundary condition. |
|
DIRICHLET
Dirichelet boundary condition. |
|
FIXED
The boundary will be left at the same value as the initial condition. |
|
NEUMANN
Neumann boundary condition, solves the equation D[field, x] = 0 at the boundary;. |
|
OUTGOINGWAVE
Outgoing wave boundary condition, solves the equation D[field, t] = D[field, x] at the boundary. |
|
PERIODIC
Periodic boundary: the grid becomes circular, by returning to the beginning when it reaches the end. |
|
RADIATION
Radiation boundary condition. |
|
ROBIN
Robin boundary condition. |
|
| Method Summary | |
|---|---|
static BoundaryCondition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BoundaryCondition[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final BoundaryCondition CUSTOM
public static final BoundaryCondition FIXED
public static final BoundaryCondition DIRICHLET
public static final BoundaryCondition PERIODIC
public static final BoundaryCondition OUTGOINGWAVE
public static final BoundaryCondition RADIATION
public static final BoundaryCondition NEUMANN
public static final BoundaryCondition CAUCHY
public static final BoundaryCondition ROBIN
| Method Detail |
|---|
public static BoundaryCondition[] values()
for (BoundaryCondition c : BoundaryCondition.values()) System.out.println(c);
public static BoundaryCondition valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||