This section describes the Oxs_Ext classes available in the standard OOMMF distribution, including documentation of their Specify block initialization strings. Standard Oxs_Ext objects can be identified by the Oxs_ prefix in their names. Additional Oxs_Ext objects may be available on your system. Check local documentation for details.
For presentation purposes, the Oxs_Ext classes are organized into 6 categories: regions, meshes, energies, evolvers, drivers, and field initializers.
Regions
Regions describe geometric volumes of space. OXS recognizes
``sections,'' which define single regions of space, and
``atlases,'' which are conceptually collections of sections. At
present only one type of each is supported:
- Specify Oxs_RectangularSection:name {
- xrange { xmin xmax }
- yrange { ymin ymax }
- zrange { zmin zmax }
- }
where xmin, xmax, ... are coordinates in meters.
- Specify Oxs_SectionAtlas:name {
- section-1-name { section-type {
} }
- section-initialize-block
- section-2-name { section-type {
} }
- section-initialize-block
- ...
- final-section-name { section-type {
} }
- section-initialize-block
- }
At present there is only one section type, so all the section-type fields above will be Oxs_RectangularSection.
Given a point, Oxs_SectionAtlas returns the name of the first section in its list that contains that point. The final section in the list must be sized so as to contain all the preceding sections. For this reason, it is common to set final-section-name to world, though this is not required.
Meshes
Meshes define the discretization impressed on the simulation. There
should be exactly one mesh declared in a MIF 2.0 file. The only
standard mesh available at present is
- Specify Oxs_RectangularMesh:name {
- cellsize { xstep ystep zstep }
- atlas { atlas_reference }
- }
This creates an axes parallel rectangular mesh across the entire space covered by atlas_reference (i.e., the final or ``world'' section of the atlas). The mesh sample rates along each axis are specified by xstep, ystep, and zstep. The mesh is cell-based, with the center of the first cell one half step in from the minimal extremal point (xmin,ymin,ymax) specified by atlas_reference. The name is commonly set to ``mesh'', so the mesh object can be referred to by other Oxs_Ext objects by the short name ``:mesh''.
Energies
The following energy terms are available. There is no limitation on the
number of each specified in the input MIF file. Many of these terms
have spatially varying parameters that are initialized via Field
Initializer objects embedded in their Specify initialization block.
The Specify block for this term has the form
- Specify Oxs_Exchange6Ngbr:name {
- default_A value
- atlas atlas_reference
- A {
}
- { region-1 region-1 A11 }
- { region-1 region-2 A12 }
- ...
- { region-m region-n Amn }
- }
The A block specifies Aij values on a region by region basis, where the regions are those declared by atlas_reference. This allows for specification of A both inside a given region (e.g., Aii) and along interfaces between regions (e.g., Aij). By symmetry, if Aij is specified, then the same value is automatically assigned to Aji as well. The default_A value is applied to any otherwise unassigned Aij.
The fields specified in the range entry are nominally in A/m, but these values are multiplied by Hscale, which may be used to effectively change the units. For example,
- Specify Oxs_UZeeman {
- Hscale 795.77472
- Hrange {
}
- { 0 0 0 10 0 0 2 }
- { 10 0 0 0 0 0 1 }
- }
The applied field steps between 0 mT, 5 mT, 10 mT and back to
0 mT. (Note that 795.77472=0.001/.)
- Specify Oxs_FixedZeeman:name {
- field { vector_field_initializer }
- }
Evolvers
Evolvers are responsible for updating the
magnetization configuration from one step to the next. There is
currently one evolver in the standard distribution,
Oxs_EulerEvolve. This implements a simple first order forward
Euler method with step size control to the Landau-Lifshitz
ODE [7,9]:
![]() |
(2) |
Drivers
The driver is responsible for coordinating
the action of the evolver on the simulation as a whole. The only driver
at present is Oxs_StandardDriver. The specify block has the
form
- Specify Oxs_StandardDriver:name {
- evolver evolver_reference
- mesh mesh_reference
- min_timestep minimum_time_step
- max_timestep maximum_time_step
- stopping_dm_dt stopping_criterion
- number_of_stages stage_count
- stage_iteration_limit stage_iteration_count
- total_iteration_limit total_iteration_count
- Ms { scalar_field_initializer }
- m0 { vector_field_initializer }
- }
evolver should be a reference to a previously declared
evolver, and mesh should be a reference to a previously
declared mesh. min_timestep and max_timestep are
the minimum and maximum time step size allowed during Landau-Lifshitz
ODE evolution, in seconds. A stage is considered complete when
|/Ms| drops below stopping_dm_dt
(in degrees/nanosecond), or when the number of steps taken on the current
problem reaches stage_iteration_limit.
stage_iteration_limit is an optional integer parameter, with default
value of 0, which is interpreted to mean no iteration limit. Similarly,
a simulation as a whole is considered complete when either the stage
count reaches number_of_stages or the total number of steps
taken reaches total_iteration_limit. Both of these are
optional parameters with default value 0, meaning no limit. Ms
specifies the saturation magnetization distribution, in A/m.
m0 is the initial spin configuration. These should be unit
vectors, specified using an embedded vector field initializer object.
Field Initializers
Field initializers are objects that produce output (either scalar or
vector) as a function of position. These are typically used as embedded
objects inside Specify blocks of other Oxs_Ext objects, to
initialize spatially varying quantities, such as material parameters or
initial magnetization spin configurations. Units on the returned values
will be dependent upon the context in which they are used.
Scalar field initializer objects are documented first. Vector field initializers are considered farther below.
- Specify Oxs_AtlasScalarFieldInit {
- atlas atlas_reference
- default_value value
- values {
}
- { region1_reference value1 }
- { region2_reference value2 }
- ...
- }
The specified atlas is used to map cell locations to regions, and the corresponding value from the values subblock is assigned to that cell. If a cell's region is not included in the values subblock, then the default_value is used.
This Oxs_ScriptScalarFieldInit returns 8.6e5 if the import (x,y,z) lies inside the ellipsoid inscribed inside the axes parallel parallelepiped defined by (xmin,ymin,zmin) and (xmax,ymax,zmax), and 0 otherwise.proc Ellipsoid { x y z xmin ymin zmin xmax ymax zmax } { set xcenter [expr ($xmax-$xmin)/2.] set ycenter [expr ($ymax-$ymin)/2.] set zcenter [expr ($zmax-$zmin)/2.] set xrad [expr $x/$xcenter -1 ] set yrad [expr $y/$ycenter -1 ] set zrad [expr $z/$zcenter -1 ] set test [expr $xrad*$xrad+$yrad*$yrad+$zrad*$zrad] if {$test>1.0} {return 0} return 8.6e5 } Specify Oxs_ScriptScalarFieldInit { script Ellipsoid }
The available vector field initializers are:
- Specify Oxs_UniformVectorFieldInit {
- norm 1
- vector { 1 1 1 }
- }
This returns the unit vector (a, a, a), where a=1/sqrt(3), regardless of the import position.
- Specify Oxs_AtlasVectorFieldInit {
- atlas atlas_reference
- default_value { vx vy vz }
- values {
}
- { region1_reference v1x v1y v1z }
- { region2_reference v2x v2y v2z }
- ...
- }
Interpretation is analogous to the Oxs_AtlasScalarFieldInit specify block, except here the values are 3 dimensional vectors rather than scalars.
proc Vortex { x y z xmin ymin zmin xmax ymax zmax } { set xcenter [expr ($xmax-$xmin)/2.] set ycenter [expr ($ymax-$ymin)/2.] set xrad [expr $x-$xcenter] set yrad [expr $y-$ycenter] set normsq [expr $xrad*$xrad+$yrad*$yrad] if {$normsq <= $xcenter*$ycenter*0.05} {return "0 0 1"} return [list [expr -1*$yrad] $xrad 0] } Specify Oxs_ScriptVectorFieldInit { script Vortex norm 1 }