Package pulse.problem.laser
Class RectangularPulse
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.problem.laser.PulseTemporalShape
-
- pulse.problem.laser.RectangularPulse
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
public class RectangularPulse extends PulseTemporalShape
The simplest pulse shape defined as , where is the signum function, pulse is the pulse width.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RectangularPulse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PulseTemporalShape
copy()
double
evaluateAt(double time)
This evaluates the dimensionless, discretised pulse function on agrid
needed to evaluate the heat source in the difference scheme.int
getRequiredDiscretisation()
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
.-
Methods inherited from class pulse.problem.laser.PulseTemporalShape
getPrefix, getPulseWidth, init, setPulseWidth, toString
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedKeywords, 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
-
-
-
-
Method Detail
-
evaluateAt
public double evaluateAt(double time)
Description copied from class:PulseTemporalShape
This evaluates the dimensionless, discretised pulse function on agrid
needed to evaluate the heat source in the difference scheme.- Specified by:
evaluateAt
in classPulseTemporalShape
- Parameters:
time
- the time measured from the start of the laser pulse.- Returns:
-
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.
-
copy
public PulseTemporalShape copy()
- Specified by:
copy
in classPulseTemporalShape
-
getRequiredDiscretisation
public int getRequiredDiscretisation()
- Specified by:
getRequiredDiscretisation
in classPulseTemporalShape
-
-