SAR Object

The Specific Absorption Rate (SAR) is defined as the time derivative of the incremental energy (dW) absorbed by an incremental mass (dm) contained in a volume element (dV) of a given mass density (r). The SAR calculation is done as a post processing step after the simulation, based on a previously defined power loss density monitor.

Methods

Reset

Resets all internal values to their default settings.

 

PowerlossMonitor ( name sName )

Defines the power loss density monitor that is used for the SAR calculation.

 

AverageWeight ( double dValue )

Local SAR values refer to a certain volume element, specified by an averaged weight value. Here a cuboid volume is used to calculate the averaged tissue weight, which must be between 0.0001g and 5000g. Default is 10g.

 

Volume ( double xmin, double xmax, double ymin, double ymax, double zmin, double zmax )

Specifies the volume for which the SAR calculation is performed.

 

SetLabel ( name sName )

Sets the label for the SAR result files and tree entry.

 

SetOption ( string option )

Can set options before executing calculation. Available options are:

The averaging method can be set by the name as seen in the specials dialog.

 

GetValue ( string name ) double

Takes the name of a SAR calculation result (as in the SAR dialog box) as a string and delivers the corresponding value. (always rms)

 

Create

Executes the SAR calculation. All necessary settings have to be made previously.

 

Load

Loads the SAR result file previously specified by SetLabel. Use GetValue to query the desired result value.

Default Settings

AverageWeight (10)

SetOption ("IEEE C95.3")

SetOption ("no rescale")

SetOption ("no subvolume")

SetOption ("volaccuracy 0.05")

Example

With SAR

.Reset

.PowerlossMonitor ("loss (f=1.8) [pw]")

.AverageWeight (8)

.SetOption ("CST C95.3")

.SetOption ("rescale 1.0")

.SetOption ("scale accepted")

.Create

MsgBox Str$(.GetValue("max sar"))

End With