.. SPDX-FileCopyrightText: 2018 SeisSol Group SPDX-License-Identifier: BSD-3-Clause SPDX-LicenseComments: Full text under /LICENSE and /LICENSES/ SPDX-FileContributor: Author lists in /AUTHORS and /CITATION.cff .. _off_fault_receivers: Off fault receivers =================== Introduction ------------ Ascii receivers are enabled using the namelist output. Here is a commented example: .. code-block:: Fortran &Output pickdt = 0.01 ! Pickpoint Sampling pickDtType = 1 ! Pickpoint Type RFileName = 'receivers.dat' ! Record Points in extra file / If pickDtType = 2, the output is generated every N time steps, where N is set by pickdt. If pickDtType = 1, output is generated every pickdt second. receivers.dat is an ASCII file describing the coordinates of the receivers in the form: :: x1 y1 z1 x2 y2 z2 (...) xn yn zn The receivers files contain the time-histories of the stress tensor (6 variables) and the particle velocities (3). Currently, there is no way to write only a subset of these variables. The variable :code:`ReceiverOutputInterval` (in the section :code:`Output` of the :ref:`parameter-file`) controls the frequency of flushing receiver time-histories. If not specified, they are written at the end of the simulation. Rotational Output ----------------- You can additionally choose to write the rotation of the velocity field by setting :code:`ReceiverComputeRotation=1` in the parameter file. The rotation of the vector field is defined as :math:`\text{rot} v = \begin{pmatrix} \partial_2 v_3 - \partial_3 v_2 \\ \partial_3 v_1 - \partial_1 v_3 \\ \partial_1 v_2 - \partial_2 v_1 \\ \end{pmatrix}`. Strain Output ------------- Furthermore, you can also output the strain by setting :code:`ReceiverComputeStrain=1`. Placing free-surface receivers ------------------------------ Placing receivers on the free-surface requires special care when a realistic topography is used. The procedure to move receivers exactly to the surface is described `here `__. Compiling place_receivers on SuperMUC ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Load the relevant :ref:`modules `. .. code-block:: bash git submodule update --init mkdir build && cd build cmake .. make -j