Package pulse.problem.schemes
Class Grid
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.problem.schemes.Grid
-
- All Implemented Interfaces:
Serializable
,Descriptive
- Direct Known Subclasses:
Grid2D
public class Grid extends PropertyHolder
A
Grid
is used to partition the space and time domain of aProblem
to allow a numeric solution with aDifferenceScheme
. This specific class of grids is one-dimensional in space, meaning that it only defines rules for partitioning the axial dimension in the laser flash experiment.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Grid()
Grid(NumericProperty gridDensity, NumericProperty timeFactor)
Creates aGrid
object with the specifiedgridDensity
andtimeFactor
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Grid
copy()
Creates a newGrid
object with exactly the same parameters as this one.NumericProperty
getGridDensity()
Retrieves the value of thegridDensity
used to calculate thehx
andtau
.protected int
getGridDensityValue()
NumericProperty
getTimeFactor()
Retrieves the value of the τ-factor, or the time factor, used in finite-difference calculation.double
getTimeStep()
Retrieves the value of the τ time step used in finite-difference calculation.double
getXStep()
Retrieves the value of the coordinate step used in finite-difference calculation.double
gridAxialDistance(double distance, double lengthFactor)
The dimensionless axial distance on thisGrid
, which is thedistance/lengthFactor
rounded up to a factor of the coordinate stephx
.double
gridTime(double time, double dimensionFactor)
The dimensionless time on thisGrid
, which is thetime/dimensionFactor
rounded up to a factor of the time steptau
.Set<NumericPropertyKeyword>
listedKeywords()
The listed properties includeGRID_DENSITY
andTAU_FACTOR
.void
set(NumericPropertyKeyword type, NumericProperty property)
An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer)NumericPropert
ies in subclasses ofAccessible
.void
setGridDensity(NumericProperty gridDensity)
Sets the value of thegridDensity
.protected void
setGridDensityValue(int N)
void
setTimeFactor(NumericProperty timeFactor)
Sets the value of thetauFactor
.protected void
setTimeStep(double tau)
void
setXStep(double hx)
Sets the value of the coordinate step.String
toString()
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedTypes, numericData, parameterListChanged, removeListeners, setPrefix, updateProperties, updateProperty
-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperties, genericProperty, numericProperties, numericProperty, property, update, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Constructor Detail
-
Grid
public Grid(NumericProperty gridDensity, NumericProperty timeFactor)
Creates aGrid
object with the specifiedgridDensity
andtimeFactor
.- Parameters:
gridDensity
- aNumericProperty
of the typeGRID_DENSITY
timeFactor
- aNumericProperty
of the typeTIME_FACTOR
- See Also:
NumericPropertyKeyword
-
Grid
protected Grid()
-
-
Method Detail
-
copy
public Grid copy()
Creates a newGrid
object with exactly the same parameters as this one.- Returns:
- a new
Grid
object replicating thisGrid
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
The listed properties includeGRID_DENSITY
andTAU_FACTOR
.- Overrides:
listedKeywords
in classPropertyHolder
- Returns:
- a set of
NumericPropertyKeyword
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
set
public void set(NumericPropertyKeyword type, NumericProperty property)
Description copied from class:Accessible
An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer)
NumericPropert
ies in subclasses ofAccessible
. Typically this involves aswitch
statement that goes through the different options for thetype
and invokes differentset(...)
methods to update the matchingNumericProperty
withproperty
.- Specified by:
set
in classAccessible
- Parameters:
type
- the type, which must be equal by definition toproperty.getType()
.property
- the property, which contains new information.
-
getXStep
public final double getXStep()
Retrieves the value of the coordinate step used in finite-difference calculation.- Returns:
- a double, representing the
hx
value.
-
setXStep
public final void setXStep(double hx)
Sets the value of the coordinate step.- Parameters:
hx
- a double, representing the newhx
value.
-
getTimeStep
public final double getTimeStep()
Retrieves the value of the τ time step used in finite-difference calculation.- Returns:
- a double, representing the
tau
value.
-
setTimeStep
protected final void setTimeStep(double tau)
-
getTimeFactor
public final NumericProperty getTimeFactor()
Retrieves the value of the τ-factor, or the time factor, used in finite-difference calculation. This factor determines the proportionally coefficient between τ and .- Returns:
- a NumericProperty of the
TAU_FACTOR
type, representing thetauFactor
value.
-
getGridDensity
public final NumericProperty getGridDensity()
Retrieves the value of thegridDensity
used to calculate thehx
andtau
.- Returns:
- a NumericProperty of the
GRID_DENSITY
type, representing thegridDensity
value.
-
getGridDensityValue
protected final int getGridDensityValue()
-
setGridDensityValue
protected void setGridDensityValue(int N)
-
setGridDensity
public void setGridDensity(NumericProperty gridDensity)
Sets the value of thegridDensity
. Automatically recalculates thehx
value.- Parameters:
gridDensity
- a NumericProperty of theGRID_DENSITY
type
-
setTimeFactor
public void setTimeFactor(NumericProperty timeFactor)
Sets the value of thetauFactor
. Automatically recalculates thetau
value.- Parameters:
timeFactor
- a NumericProperty of theTAU_FACTOR
type
-
gridTime
public final double gridTime(double time, double dimensionFactor)
The dimensionless time on thisGrid
, which is thetime/dimensionFactor
rounded up to a factor of the time steptau
.- Parameters:
time
- the timedimensionFactor
- a conversion factor with the dimension of time- Returns:
- a double representing the time on the finite grid
-
gridAxialDistance
public final double gridAxialDistance(double distance, double lengthFactor)
The dimensionless axial distance on thisGrid
, which is thedistance/lengthFactor
rounded up to a factor of the coordinate stephx
.- Parameters:
distance
- the distance along the axial directionlengthFactor
- a conversion factor with the dimension of length- Returns:
- a double representing the axial distance on the finite grid
-
-