Unverified Commit 5992bd24 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

some more converted atc fix_modify docs

parent 4cdb904e
Loading
Loading
Loading
Loading
+47 −0
Original line number Diff line number Diff line
.. index:: fix_modify AtC mesh output

fix_modify AtC mesh output command
==================================

Syntax
""""""

.. parsed-literal::

   fix_modify <AtC fixID> mesh output <file_prefix>

* AtC fixID = ID of :doc:`fix atc <fix_atc>` instance
* mesh output = name of the AtC sub-command
* file_prefix = prefix of various generated output files


Examples
""""""""

.. code-block:: LAMMPS

   fix_modify AtC mesh output meshData


Description
"""""""""""

Command to output mesh and associated data: nodesets, facesets, and
elementsets. This data is only output once upon initialization since
currently the mesh is static. Creates binary (EnSight, "gold" format)
output of mesh data.

Restrictions
""""""""""""

None.

Related AtC commands
""""""""""""""""""""

- :ref:`fix_modify AtC command overview <atc_fix_modify>`

Default
"""""""

None.
+2 −0
Original line number Diff line number Diff line
@@ -16,11 +16,13 @@ Syntax
* filename_prefix = prefix for data files (for *output*)
* frequency = frequency of output in time-steps (for *output*)
* optional keywords for *output*:

  - text = creates text output of index, step and nodal variable values for unique nodes
  - full_text = creates text output index, nodal id, step, nodal coordinates and nodal variable values for unique and image nodes
  - binary = creates binary EnSight output
  - vector_components = outputs vectors as scalar components
  - tensor_components = outputs tensor as scalar components (for use with ParaView)

* *step* or *time* = index output by step or by time (for *output index*)


+47 −0
Original line number Diff line number Diff line
.. index:: fix_modify AtC output boundary_integral

fix_modify AtC output boundary_integral command
===============================================

Syntax
""""""

.. parsed-literal::

   fix_modify <AtC fixID> output boundary_integral <fieldname> faceset [name]

* AtC fixID = ID of :doc:`fix atc <fix_atc>` instance
* output boundary_integral = name of the AtC sub-command
* fieldname = name of hardy field
* faceset = required keyword
* name= name of faceset


Examples
""""""""

.. code-block:: LAMMPS

   fix_modify AtC output boundary_integral stress faceset loop1


Description
"""""""""""

Calculates a surface integral of the given field dotted with the outward
normal of the faces and puts output in the "GLOBALS" file.

Restrictions
""""""""""""

Must be used with the hardy/field type of :doc:`fix atc <fix_atc>`

Related AtC commands
""""""""""""""""""""

- :ref:`fix_modify AtC command overview <atc_fix_modify>`

Default
"""""""

None.
+48 −0
Original line number Diff line number Diff line
.. index:: fix_modify AtC output contour_integral

fix_modify AtC output contour_integral command
==============================================

Syntax
""""""

.. parsed-literal::

   fix_modify <AtC fixID> output contour_integral <fieldname> faceset <name> [axis [x|y|z]]

* AtC fixID = ID of :doc:`fix atc <fix_atc>` instance
* output contour_integral = name of the AtC sub-command
* fieldname = name of hardy field
* faceset = required keyword
* name = name of faceset
* *axis x* or *axis y* or *axis z* = (optional)


Examples
""""""""

.. code-block:: LAMMPS

   fix_modify AtC output contour_integral stress faceset loop1


Description
"""""""""""

Calculates a surface integral of the given field dotted with the outward
normal of the faces and puts output in the "GLOBALS" file.

Restrictions
""""""""""""

Must be used with the hardy/field type of :doc:`fix atc <fix_atc>`

Related AtC commands
""""""""""""""""""""

- :ref:`fix_modify AtC command overview <atc_fix_modify>`

Default
"""""""

None.
+49 −0
Original line number Diff line number Diff line
.. index:: fix_modify AtC output nodeset

fix_modify AtC output nodeset command
=====================================

Syntax
""""""

.. parsed-literal::

   fix_modify <AtC fixID> output nodeset <nodeset_name> <operation>

* AtC fixID = ID of :doc:`fix atc <fix_atc>` instance
* output nodeset = name of the AtC sub-command
* nodeset_name= name of nodeset to be operated on
* operation = *sum*

  * *sum* = creates nodal sum over nodes in specified nodeset


Examples
""""""""

.. code-block:: LAMMPS

   fix_modify AtC output nodeset nset1 sum


Description
"""""""""""

Performs operation over the nodes belonging to specified nodeset and
outputs resulting variable values to GLOBALS file.

Restrictions
""""""""""""

None.

Related AtC commands
""""""""""""""""""""

- :ref:`fix_modify AtC command overview <atc_fix_modify>`
- :doc:`fix atc command <fix_atc>`

Default
"""""""

None.
Loading