diff --git a/README.rst b/README.rst index 17c34cc..73b80f2 100644 --- a/README.rst +++ b/README.rst @@ -1,42 +1,42 @@ +============= +Stokes ALE +============= +Stokes equation is a linearised form of the Navier-Stokes equations in the limit of small Reynolds number. +This equation, also named creeping flow, is a type of fluid flow where advective inertial forces are small compared with viscous forces. +The ALE form of the Stokes equation is implemented in this example. -================= -Example Name Here -================= - -Short synopsis of the example. Building the example ==================== -If this not a pure Python example place the instructions here on how to configure and build with CMake:: +The fortran version of the example can be configured and built with CMake:: + + git clone https://github.com/OpenCMISS-Examples/stokes_ale.git + mkdir stokes_ale-build + cd stokes_ale-build + cmake -DOpenCMISSLibs_DIR=~/opencmiss/install/ ../stokes_ale/ + make - git clone https://github.com/you/your-example.git # maybe your example is somewhere else like: OpenCMISS-Examples - mkdir build - cmake -DOpenCMISSLibs_DIR=/path/to/opencmisslib/install ../your-example - make # cmake --build . will also work here and is much more platform agnostic. Running the example =================== -Explain how the example is run:: - - cd build - ./src/fortran/XXXXXXXX +To run the Fortran executable built in the previous section do the following (where the current directory is assumed to be `stokes_ale-build`):: -or maybe it is a Python only example:: + cd ./src/fortran/ + ./stokes_ale_fortran - source /path/to/opencmisslibs/install/virtaul_environments/oclibs_venv_pyXY_release/bin/activate - python src/python/XXXXXXXX.py +The results can be visualised by running `visualiseStokesALE.cmgui <./src/fortran/visualiseStokesALE.cmgui>`_ with the `Cmgui visualiser `_. -where the XY in the path are the Python major and minor versions respectively. Prerequisites ============= -Are there any external sources that are required over and above CMake, OpenCMISS libraries. Sources like meshes which might be stored outside of the example itself. +There are no additional input files required for this example as it is self-contained. + License ======= -A line on the license applicable to this example. \ No newline at end of file +License applicable to this example is described in `LICENSE <./LICENSE>`_. diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index 897a3a5..0000000 --- a/docs/Makefile +++ /dev/null @@ -1,192 +0,0 @@ -# Makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = -BUILDDIR = _build - -# User-friendly check for sphinx-build -ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) -$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) -endif - -# Internal variables. -PAPEROPT_a4 = -D latex_paper_size=a4 -PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . -# the i18n builder cannot share the environment and doctrees with the others -I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . - -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest coverage gettext - -help: - @echo "Please use \`make ' where is one of" - @echo " html to make standalone HTML files" - @echo " dirhtml to make HTML files named index.html in directories" - @echo " singlehtml to make a single large HTML file" - @echo " pickle to make pickle files" - @echo " json to make JSON files" - @echo " htmlhelp to make HTML files and a HTML help project" - @echo " qthelp to make HTML files and a qthelp project" - @echo " applehelp to make an Apple Help Book" - @echo " devhelp to make HTML files and a Devhelp project" - @echo " epub to make an epub" - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" - @echo " latexpdf to make LaTeX files and run them through pdflatex" - @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" - @echo " text to make text files" - @echo " man to make manual pages" - @echo " texinfo to make Texinfo files" - @echo " info to make Texinfo files and run them through makeinfo" - @echo " gettext to make PO message catalogs" - @echo " changes to make an overview of all changed/added/deprecated items" - @echo " xml to make Docutils-native XML files" - @echo " pseudoxml to make pseudoxml-XML files for display purposes" - @echo " linkcheck to check all external links for integrity" - @echo " doctest to run all doctests embedded in the documentation (if enabled)" - @echo " coverage to run coverage check of the documentation (if enabled)" - -clean: - rm -rf $(BUILDDIR)/* - -html: - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." - -dirhtml: - $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." - -singlehtml: - $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml - @echo - @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." - -pickle: - $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle - @echo - @echo "Build finished; now you can process the pickle files." - -json: - $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json - @echo - @echo "Build finished; now you can process the JSON files." - -htmlhelp: - $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp - @echo - @echo "Build finished; now you can run HTML Help Workshop with the" \ - ".hhp project file in $(BUILDDIR)/htmlhelp." - -qthelp: - $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp - @echo - @echo "Build finished; now you can run "qcollectiongenerator" with the" \ - ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/XXXXXXXX.qhcp" - @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/XXXXXXXX.qhc" - -applehelp: - $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp - @echo - @echo "Build finished. The help book is in $(BUILDDIR)/applehelp." - @echo "N.B. You won't be able to view it unless you put it in" \ - "~/Library/Documentation/Help or install it in your application" \ - "bundle." - -devhelp: - $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp - @echo - @echo "Build finished." - @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/XXXXXXXX" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/XXXXXXXX" - @echo "# devhelp" - -epub: - $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub - @echo - @echo "Build finished. The epub file is in $(BUILDDIR)/epub." - -latex: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo - @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." - @echo "Run \`make' in that directory to run these through (pdf)latex" \ - "(use \`make latexpdf' here to do that automatically)." - -latexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through pdflatex..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -latexpdfja: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through platex and dvipdfmx..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -text: - $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text - @echo - @echo "Build finished. The text files are in $(BUILDDIR)/text." - -man: - $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man - @echo - @echo "Build finished. The manual pages are in $(BUILDDIR)/man." - -texinfo: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo - @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." - @echo "Run \`make' in that directory to run these through makeinfo" \ - "(use \`make info' here to do that automatically)." - -info: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo "Running Texinfo files through makeinfo..." - make -C $(BUILDDIR)/texinfo info - @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." - -gettext: - $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale - @echo - @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." - -changes: - $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes - @echo - @echo "The overview file is in $(BUILDDIR)/changes." - -linkcheck: - $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck - @echo - @echo "Link check complete; look for any errors in the above output " \ - "or in $(BUILDDIR)/linkcheck/output.txt." - -doctest: - $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest - @echo "Testing of doctests in the sources finished, look at the " \ - "results in $(BUILDDIR)/doctest/output.txt." - -coverage: - $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage - @echo "Testing of coverage in the sources finished, look at the " \ - "results in $(BUILDDIR)/coverage/python.txt." - -xml: - $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml - @echo - @echo "Build finished. The XML files are in $(BUILDDIR)/xml." - -pseudoxml: - $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml - @echo - @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." diff --git a/docs/conf.py b/docs/conf.py deleted file mode 100644 index bf40d6d..0000000 --- a/docs/conf.py +++ /dev/null @@ -1,286 +0,0 @@ -# -*- coding: utf-8 -*- -# -# XXXXXXXX documentation build configuration file, created by -# sphinx-quickstart on Tue Sep 26 16:27:22 2017. -# -# This file is execfile()d with the current directory set to its -# containing dir. -# -# Note that not all possible configuration values are present in this -# autogenerated file. -# -# All configuration values have a default; values that are commented out -# serve to show the default. - -import sys -import os -import shlex - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('.')) - -# -- General configuration ------------------------------------------------ - -# If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. -extensions = [ - 'sphinx.ext.mathjax', -] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# The suffix(es) of source filenames. -# You can specify multiple suffix as a list of string: -# source_suffix = ['.rst', '.md'] -source_suffix = '.rst' - -# The encoding of source files. -#source_encoding = 'utf-8-sig' - -# The master toctree document. -master_doc = 'index' - -# General information about the project. -project = u'XXXXXXXX' -copyright = u'2017, YYYYYYYY' -author = u'YYYYYYYY' - -# The version info for the project you're documenting, acts as replacement for -# |version| and |release|, also used in various other places throughout the -# built documents. -# -# The short X.Y version. -version = 'X.Y.Z' -# The full version, including alpha/beta/rc tags. -release = 'X.Y.Z' - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -# -# This is also used if you do content translation via gettext catalogs. -# Usually you set "language" from the command line for these cases. -language = None - -# There are two options for replacing |today|: either, you set today to some -# non-false value, then it is used: -#today = '' -# Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -exclude_patterns = ['_build'] - -# The reST default role (used for this markup: `text`) to use for all -# documents. -#default_role = None - -# If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True - -# If true, the current module name will be prepended to all description -# unit titles (such as .. function::). -#add_module_names = True - -# If true, sectionauthor and moduleauthor directives will be shown in the -# output. They are ignored by default. -#show_authors = False - -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' - -# A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] - -# If true, keep warnings as "system message" paragraphs in the built documents. -#keep_warnings = False - -# If true, `todo` and `todoList` produce output, else they produce nothing. -todo_include_todos = False - - -# -- Options for HTML output ---------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -html_theme = 'alabaster' - -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. -#html_theme_options = {} - -# Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] - -# The name for this set of Sphinx documents. If None, it defaults to -# " v documentation". -#html_title = None - -# A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None - -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -#html_logo = None - -# The name of an image file (within the static path) to use as favicon of the -# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 -# pixels large. -#html_favicon = None - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -# Add any extra paths that contain custom files (such as robots.txt or -# .htaccess) here, relative to this directory. These files are copied -# directly to the root of the documentation. -#html_extra_path = [] - -# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, -# using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' - -# If true, SmartyPants will be used to convert quotes and dashes to -# typographically correct entities. -#html_use_smartypants = True - -# Custom sidebar templates, maps document names to template names. -#html_sidebars = {} - -# Additional templates that should be rendered to pages, maps page names to -# template names. -#html_additional_pages = {} - -# If false, no module index is generated. -#html_domain_indices = True - -# If false, no index is generated. -#html_use_index = True - -# If true, the index is split into individual pages for each letter. -#html_split_index = False - -# If true, links to the reST sources are added to the pages. -#html_show_sourcelink = True - -# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True - -# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True - -# If true, an OpenSearch description file will be output, and all pages will -# contain a tag referring to it. The value of this option must be the -# base URL from which the finished HTML is served. -#html_use_opensearch = '' - -# This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None - -# Language to be used for generating the HTML full-text search index. -# Sphinx supports the following languages: -# 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja' -# 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr' -#html_search_language = 'en' - -# A dictionary with options for the search language support, empty by default. -# Now only 'ja' uses this config value -#html_search_options = {'type': 'default'} - -# The name of a javascript file (relative to the configuration directory) that -# implements a search results scorer. If empty, the default will be used. -#html_search_scorer = 'scorer.js' - -# Output file base name for HTML help builder. -htmlhelp_basename = 'XXXXXXXXdoc' - -# -- Options for LaTeX output --------------------------------------------- - -latex_elements = { -# The paper size ('letterpaper' or 'a4paper'). -#'papersize': 'letterpaper', - -# The font size ('10pt', '11pt' or '12pt'). -#'pointsize': '10pt', - -# Additional stuff for the LaTeX preamble. -#'preamble': '', - -# Latex figure (float) alignment -#'figure_align': 'htbp', -} - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, -# author, documentclass [howto, manual, or own class]). -latex_documents = [ - (master_doc, 'XXXXXXXX.tex', u'XXXXXXXX Documentation', - u'YYYYYYYY', 'manual'), -] - -# The name of an image file (relative to this directory) to place at the top of -# the title page. -#latex_logo = None - -# For "manual" documents, if this is true, then toplevel headings are parts, -# not chapters. -#latex_use_parts = False - -# If true, show page references after internal links. -#latex_show_pagerefs = False - -# If true, show URL addresses after external links. -#latex_show_urls = False - -# Documents to append as an appendix to all manuals. -#latex_appendices = [] - -# If false, no module index is generated. -#latex_domain_indices = True - - -# -- Options for manual page output --------------------------------------- - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - (master_doc, 'xxxxxxxx', u'XXXXXXXX Documentation', - [author], 1) -] - -# If true, show URL addresses after external links. -#man_show_urls = False - - -# -- Options for Texinfo output ------------------------------------------- - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - (master_doc, 'XXXXXXXX', u'XXXXXXXX Documentation', - author, 'XXXXXXXX', 'One line description of project.', - 'Miscellaneous'), -] - -# Documents to append as an appendix to all manuals. -#texinfo_appendices = [] - -# If false, no module index is generated. -#texinfo_domain_indices = True - -# How to display URL addresses: 'footnote', 'no', or 'inline'. -#texinfo_show_urls = 'footnote' - -# If true, do not generate a @detailmenu in the "Top" node's menu. -#texinfo_no_detailmenu = False diff --git a/docs/index.rst b/docs/index.rst deleted file mode 100644 index c6e8d46..0000000 --- a/docs/index.rst +++ /dev/null @@ -1,22 +0,0 @@ -.. XXXXXXXX documentation master file, created by - sphinx-quickstart on Tue Sep 26 16:27:22 2017. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to XXXXXXXX's documentation! -==================================== - -Contents: - -.. toctree:: - :maxdepth: 2 - - - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` - diff --git a/docs/make.bat b/docs/make.bat deleted file mode 100644 index 9744509..0000000 --- a/docs/make.bat +++ /dev/null @@ -1,263 +0,0 @@ -@ECHO OFF - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set BUILDDIR=_build -set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . -set I18NSPHINXOPTS=%SPHINXOPTS% . -if NOT "%PAPER%" == "" ( - set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% - set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% -) - -if "%1" == "" goto help - -if "%1" == "help" ( - :help - echo.Please use `make ^` where ^ is one of - echo. html to make standalone HTML files - echo. dirhtml to make HTML files named index.html in directories - echo. singlehtml to make a single large HTML file - echo. pickle to make pickle files - echo. json to make JSON files - echo. htmlhelp to make HTML files and a HTML help project - echo. qthelp to make HTML files and a qthelp project - echo. devhelp to make HTML files and a Devhelp project - echo. epub to make an epub - echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter - echo. text to make text files - echo. man to make manual pages - echo. texinfo to make Texinfo files - echo. gettext to make PO message catalogs - echo. changes to make an overview over all changed/added/deprecated items - echo. xml to make Docutils-native XML files - echo. pseudoxml to make pseudoxml-XML files for display purposes - echo. linkcheck to check all external links for integrity - echo. doctest to run all doctests embedded in the documentation if enabled - echo. coverage to run coverage check of the documentation if enabled - goto end -) - -if "%1" == "clean" ( - for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i - del /q /s %BUILDDIR%\* - goto end -) - - -REM Check if sphinx-build is available and fallback to Python version if any -%SPHINXBUILD% 2> nul -if errorlevel 9009 goto sphinx_python -goto sphinx_ok - -:sphinx_python - -set SPHINXBUILD=python -m sphinx.__init__ -%SPHINXBUILD% 2> nul -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.http://sphinx-doc.org/ - exit /b 1 -) - -:sphinx_ok - - -if "%1" == "html" ( - %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/html. - goto end -) - -if "%1" == "dirhtml" ( - %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. - goto end -) - -if "%1" == "singlehtml" ( - %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. - goto end -) - -if "%1" == "pickle" ( - %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can process the pickle files. - goto end -) - -if "%1" == "json" ( - %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can process the JSON files. - goto end -) - -if "%1" == "htmlhelp" ( - %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can run HTML Help Workshop with the ^ -.hhp project file in %BUILDDIR%/htmlhelp. - goto end -) - -if "%1" == "qthelp" ( - %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can run "qcollectiongenerator" with the ^ -.qhcp project file in %BUILDDIR%/qthelp, like this: - echo.^> qcollectiongenerator %BUILDDIR%\qthelp\XXXXXXXX.qhcp - echo.To view the help file: - echo.^> assistant -collectionFile %BUILDDIR%\qthelp\XXXXXXXX.ghc - goto end -) - -if "%1" == "devhelp" ( - %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. - goto end -) - -if "%1" == "epub" ( - %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The epub file is in %BUILDDIR%/epub. - goto end -) - -if "%1" == "latex" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "latexpdf" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - cd %BUILDDIR%/latex - make all-pdf - cd %~dp0 - echo. - echo.Build finished; the PDF files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "latexpdfja" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - cd %BUILDDIR%/latex - make all-pdf-ja - cd %~dp0 - echo. - echo.Build finished; the PDF files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "text" ( - %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The text files are in %BUILDDIR%/text. - goto end -) - -if "%1" == "man" ( - %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The manual pages are in %BUILDDIR%/man. - goto end -) - -if "%1" == "texinfo" ( - %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. - goto end -) - -if "%1" == "gettext" ( - %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The message catalogs are in %BUILDDIR%/locale. - goto end -) - -if "%1" == "changes" ( - %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes - if errorlevel 1 exit /b 1 - echo. - echo.The overview file is in %BUILDDIR%/changes. - goto end -) - -if "%1" == "linkcheck" ( - %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck - if errorlevel 1 exit /b 1 - echo. - echo.Link check complete; look for any errors in the above output ^ -or in %BUILDDIR%/linkcheck/output.txt. - goto end -) - -if "%1" == "doctest" ( - %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest - if errorlevel 1 exit /b 1 - echo. - echo.Testing of doctests in the sources finished, look at the ^ -results in %BUILDDIR%/doctest/output.txt. - goto end -) - -if "%1" == "coverage" ( - %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage - if errorlevel 1 exit /b 1 - echo. - echo.Testing of coverage in the sources finished, look at the ^ -results in %BUILDDIR%/coverage/python.txt. - goto end -) - -if "%1" == "xml" ( - %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The XML files are in %BUILDDIR%/xml. - goto end -) - -if "%1" == "pseudoxml" ( - %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. - goto end -) - -:end diff --git a/src/fortran/expected_results/output/MainTime_0.part0.exelem b/src/fortran/expected_results/output/MainTime_0.part0.exelem new file mode 100644 index 0000000..885a140 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_0.part0.exelem @@ -0,0 +1,887 @@ + Group name: StokesRegion + Shape. Dimension=3 + #Scale factor sets= 2 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + #Nodes= 8 + #Fields=9 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + y. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + z. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2) U, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7) MaterialsMovingMesh, field, rectangular cartesian, #Components=1 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 8) ALE, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 9) MovingMesh, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + Element: 1 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 1 2 5 6 17 18 21 22 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 2 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 2 3 6 7 18 19 22 23 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 3 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 3 4 7 8 19 20 23 24 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 4 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 5 6 9 10 21 22 25 26 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 5 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 6 7 10 11 22 23 26 27 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 6 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 7 8 11 12 23 24 27 28 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 7 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 9 10 13 14 25 26 29 30 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 8 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 10 11 14 15 26 27 30 31 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 9 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 11 12 15 16 27 28 31 32 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 10 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 17 18 21 22 33 34 37 38 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 11 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 18 19 22 23 34 35 38 39 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 12 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 19 20 23 24 35 36 39 40 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 13 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 21 22 25 26 37 38 41 42 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 14 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 22 23 26 27 38 39 42 43 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 15 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 23 24 27 28 39 40 43 44 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 16 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 25 26 29 30 41 42 45 46 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 17 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 26 27 30 31 42 43 46 47 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 18 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 27 28 31 32 43 44 47 48 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 19 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 33 34 37 38 49 50 53 54 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 20 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 34 35 38 39 50 51 54 55 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 21 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 35 36 39 40 51 52 55 56 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 22 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 37 38 41 42 53 54 57 58 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 23 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 38 39 42 43 54 55 58 59 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 24 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 39 40 43 44 55 56 59 60 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 25 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 41 42 45 46 57 58 61 62 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 26 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 42 43 46 47 58 59 62 63 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 27 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 43 44 47 48 59 60 63 64 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/output/MainTime_0.part0.exnode b/src/fortran/expected_results/output/MainTime_0.part0.exnode new file mode 100644 index 0000000..f007714 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_0.part0.exnode @@ -0,0 +1,1699 @@ + Group name: StokesRegion + #Fields=8 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. Value index= 1, #Derivatives= 0 + y. Value index= 2, #Derivatives= 0 + z. Value index= 3, #Derivatives= 0 + 2) U, field, rectangular cartesian, #Components=4 + 1. Value index= 4, #Derivatives= 0 + 2. Value index= 5, #Derivatives= 0 + 3. Value index= 6, #Derivatives= 0 + 4. Value index= 7, #Derivatives= 0 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. Value index= 8, #Derivatives= 0 + 2. Value index= 9, #Derivatives= 0 + 3. Value index= 10, #Derivatives= 0 + 4. Value index= 11, #Derivatives= 0 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. Value index= 12, #Derivatives= 0 + 2. Value index= 13, #Derivatives= 0 + 3. Value index= 14, #Derivatives= 0 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. Value index= 15, #Derivatives= 0 + 2. Value index= 16, #Derivatives= 0 + 3. Value index= 17, #Derivatives= 0 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. Value index= 18, #Derivatives= 0 + 2. Value index= 19, #Derivatives= 0 + 7) ALE, field, rectangular cartesian, #Components=3 + 1. Value index= 20, #Derivatives= 0 + 2. Value index= 21, #Derivatives= 0 + 3. Value index= 22, #Derivatives= 0 + 8) MovingMesh, field, rectangular cartesian, #Components=3 + 1. Value index= 23, #Derivatives= 0 + 2. Value index= 24, #Derivatives= 0 + 3. Value index= 25, #Derivatives= 0 + Node: 1 + 0.0000000000000000E+00 + -2.0436580762043174E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.0436580762043174E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 2 + 3.3333333333333331E-01 + -2.4807688999919173E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4807688999919173E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 3 + 6.6666666666666663E-01 + -2.1695315954913974E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1695315954913974E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 4 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 5 + 0.0000000000000000E+00 + 1.6166666666666667E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -5.0000000000000003E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 6 + 3.3333333333333331E-01 + 1.6281677761676714E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.8498890498995242E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 7 + 6.6666666666666663E-01 + 1.6294673638367172E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7199302829949620E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 8 + 1.0000000000000000E+00 + 1.6245473317393109E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.2119334927355812E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 9 + 0.0000000000000000E+00 + 3.2992895946092800E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4043738724053578E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 10 + 3.3333333333333331E-01 + 3.2962150998430437E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7118233490289559E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 11 + 6.6666666666666663E-01 + 3.2959915433390758E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7341789994257635E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 12 + 1.0000000000000000E+00 + 3.2973764033490038E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5956929984329832E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 13 + 0.0000000000000000E+00 + 4.9613239243467158E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.8676075653284431E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 14 + 3.3333333333333331E-01 + 4.9627867413194728E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7213258680527585E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 15 + 6.6666666666666663E-01 + 4.9628528260184499E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7147173981550381E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 16 + 1.0000000000000000E+00 + 4.9621727924429120E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7827207557087572E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 17 + 0.0000000000000000E+00 + -2.6131097366067554E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6131097366067554E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 18 + 3.3333333333333331E-01 + -2.5310216977809451E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5310216977809451E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 19 + 6.6666666666666663E-01 + -2.2448814241257348E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2448814241257348E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 20 + 1.0000000000000000E+00 + -2.1856491291927776E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1856491291927776E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 21 + 0.0000000000000000E+00 + 1.6283289515046853E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + -3.8337715161981423E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.8337715161981423E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 22 + 3.3333333333333331E-01 + 1.6285548843874522E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.8111782279214454E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.5842096748203701E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 23 + 6.6666666666666663E-01 + 1.6297223514976860E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6944315168980772E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.5842096748203701E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 24 + 1.0000000000000000E+00 + 1.6301331432702346E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6533523396432017E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 25 + 0.0000000000000000E+00 + 3.2962069493421571E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7126383991176570E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 26 + 3.3333333333333331E-01 + 3.2962258611815485E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7107472151784872E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.5842096748203701E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 27 + 6.6666666666666663E-01 + 3.2960022016625210E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7331131670812333E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.5842096748203694E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 28 + 1.0000000000000000E+00 + 3.2959139318281201E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7419401505213494E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 29 + 0.0000000000000000E+00 + 4.9627807890043707E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7219210995629623E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 30 + 3.3333333333333331E-01 + 4.9627447065193637E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7255293480636428E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 31 + 6.6666666666666663E-01 + 4.9628238559973932E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7176144002607242E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 32 + 1.0000000000000000E+00 + 4.9628609765193366E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7139023480663350E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 33 + 0.0000000000000000E+00 + -2.7183191333788832E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.7183191333788832E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 34 + 3.3333333333333331E-01 + -2.6746645736304669E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6746645736304669E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 35 + 6.6666666666666663E-01 + -2.6020262985359168E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6020262985359168E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 36 + 1.0000000000000000E+00 + -2.5581339187614200E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5581339187614200E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 37 + 0.0000000000000000E+00 + 1.6302410140244121E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6425652642254502E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 38 + 3.3333333333333331E-01 + 1.6304323975052357E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6234269161430979E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.5842096748203701E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 39 + 6.6666666666666663E-01 + 1.6307591949227769E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5907471743889800E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.5842096748203701E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 40 + 1.0000000000000000E+00 + 1.6309484588689309E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5718207797735844E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 41 + 0.0000000000000000E+00 + 3.2959180533154311E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7415280017902293E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 42 + 3.3333333333333331E-01 + 3.2958914120869185E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7441921246414905E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.5842096748203701E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 43 + 6.6666666666666663E-01 + 3.2958561453756925E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7477187957640955E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.5842096748203694E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 44 + 1.0000000000000000E+00 + 3.2958311192418028E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7502214091530456E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 45 + 0.0000000000000000E+00 + 4.9628471370332363E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7152862966763608E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 46 + 3.3333333333333331E-01 + 4.9628532416015556E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7146758398444793E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 47 + 6.6666666666666663E-01 + 4.9628554960949662E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7144503905033842E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 48 + 1.0000000000000000E+00 + 4.9628602313431172E+00 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7139768656882899E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 49 + 0.0000000000000000E+00 + -2.7549166234040769E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.7549166234040769E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 50 + 3.3333333333333331E-01 + -2.7344366670802627E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.7344366670802627E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 51 + 6.6666666666666663E-01 + -2.6904747553762574E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6904747553762574E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 52 + 1.0000000000000000E+00 + -2.6700001881273378E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6700001881273378E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 53 + 0.0000000000000000E+00 + 1.6308107528585418E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5855913808124841E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 54 + 3.3333333333333331E-01 + 1.6309067934579298E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5759873208736921E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 55 + 6.6666666666666663E-01 + 1.6311096342059448E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5557032460722032E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 56 + 1.0000000000000000E+00 + 1.6312057254033998E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5460941263266890E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 57 + 0.0000000000000000E+00 + 3.2958474521095744E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7485881223758975E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 58 + 3.3333333333333331E-01 + 3.2958404418044753E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7492891528858145E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 59 + 6.6666666666666663E-01 + 3.2958229687409162E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7510364592417439E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 60 + 1.0000000000000000E+00 + 3.2958159143889190E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7517418944414384E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 61 + 0.0000000000000000E+00 + 4.9628567317644041E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7143268235596084E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 62 + 3.3333333333333331E-01 + 4.9628552875341230E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7144712465876611E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 63 + 6.6666666666666663E-01 + 4.9628542790280150E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7145720971984979E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 64 + 1.0000000000000000E+00 + 4.9628528755861447E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7147124413855447E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/output/MainTime_1.part0.exelem b/src/fortran/expected_results/output/MainTime_1.part0.exelem new file mode 100644 index 0000000..885a140 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_1.part0.exelem @@ -0,0 +1,887 @@ + Group name: StokesRegion + Shape. Dimension=3 + #Scale factor sets= 2 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + #Nodes= 8 + #Fields=9 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + y. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + z. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2) U, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7) MaterialsMovingMesh, field, rectangular cartesian, #Components=1 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 8) ALE, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 9) MovingMesh, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + Element: 1 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 1 2 5 6 17 18 21 22 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 2 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 2 3 6 7 18 19 22 23 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 3 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 3 4 7 8 19 20 23 24 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 4 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 5 6 9 10 21 22 25 26 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 5 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 6 7 10 11 22 23 26 27 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 6 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 7 8 11 12 23 24 27 28 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 7 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 9 10 13 14 25 26 29 30 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 8 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 10 11 14 15 26 27 30 31 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 9 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 11 12 15 16 27 28 31 32 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 10 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 17 18 21 22 33 34 37 38 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 11 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 18 19 22 23 34 35 38 39 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 12 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 19 20 23 24 35 36 39 40 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 13 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 21 22 25 26 37 38 41 42 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 14 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 22 23 26 27 38 39 42 43 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 15 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 23 24 27 28 39 40 43 44 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 16 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 25 26 29 30 41 42 45 46 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 17 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 26 27 30 31 42 43 46 47 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 18 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 27 28 31 32 43 44 47 48 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 19 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 33 34 37 38 49 50 53 54 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 20 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 34 35 38 39 50 51 54 55 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 21 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 35 36 39 40 51 52 55 56 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 22 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 37 38 41 42 53 54 57 58 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 23 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 38 39 42 43 54 55 58 59 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 24 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 39 40 43 44 55 56 59 60 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 25 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 41 42 45 46 57 58 61 62 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 26 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 42 43 46 47 58 59 62 63 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 27 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 43 44 47 48 59 60 63 64 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/output/MainTime_1.part0.exnode b/src/fortran/expected_results/output/MainTime_1.part0.exnode new file mode 100644 index 0000000..1576953 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_1.part0.exnode @@ -0,0 +1,1699 @@ + Group name: StokesRegion + #Fields=8 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. Value index= 1, #Derivatives= 0 + y. Value index= 2, #Derivatives= 0 + z. Value index= 3, #Derivatives= 0 + 2) U, field, rectangular cartesian, #Components=4 + 1. Value index= 4, #Derivatives= 0 + 2. Value index= 5, #Derivatives= 0 + 3. Value index= 6, #Derivatives= 0 + 4. Value index= 7, #Derivatives= 0 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. Value index= 8, #Derivatives= 0 + 2. Value index= 9, #Derivatives= 0 + 3. Value index= 10, #Derivatives= 0 + 4. Value index= 11, #Derivatives= 0 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. Value index= 12, #Derivatives= 0 + 2. Value index= 13, #Derivatives= 0 + 3. Value index= 14, #Derivatives= 0 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. Value index= 15, #Derivatives= 0 + 2. Value index= 16, #Derivatives= 0 + 3. Value index= 17, #Derivatives= 0 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. Value index= 18, #Derivatives= 0 + 2. Value index= 19, #Derivatives= 0 + 7) ALE, field, rectangular cartesian, #Components=3 + 1. Value index= 20, #Derivatives= 0 + 2. Value index= 21, #Derivatives= 0 + 3. Value index= 22, #Derivatives= 0 + 8) MovingMesh, field, rectangular cartesian, #Components=3 + 1. Value index= 23, #Derivatives= 0 + 2. Value index= 24, #Derivatives= 0 + 3. Value index= 25, #Derivatives= 0 + Node: 1 + 0.0000000000000000E+00 + -4.0666798756010647E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9294262798201444E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.0230217993967476E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 2 + 3.3333333333333331E-01 + -4.9393906137477572E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.4680395303920866E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4586217137558403E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 3 + 6.6666666666666663E-01 + -4.3242225046509999E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.6629747950261686E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1546909091596025E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 4 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 3.7509744681915858E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 5 + 0.0000000000000000E+00 + 1.5672822496369099E+00 + 0.0000000000000000E+00 + 3.9851820939688191E-03 + -1.3136066220308704E-02 + -1.4014576414771190E-02 + 1.7457785532160084E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.9384417029756891E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 6 + 3.3333333333333331E-01 + 1.5902635473036817E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 9.9634290080424428E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7904228863989767E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 7 + 6.6666666666666663E-01 + 1.5929063967379813E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.9220970155135317E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6560967098735866E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 8 + 1.0000000000000000E+00 + 1.5831402252849807E+00 + 0.0000000000000000E+00 + -2.6094042912009887E-03 + 8.9549095063354636E-04 + -2.6420276684327986E-03 + 5.1020768907401335E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.1407106454330322E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 9 + 0.0000000000000000E+00 + 3.2659030237824114E+00 + 0.0000000000000000E+00 + -1.8219368144870442E-02 + -5.4546929729418166E-02 + 1.5397912530315994E-02 + 2.0705580384616225E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3386570826868592E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 10 + 3.3333333333333331E-01 + 3.2597515426387265E+00 + 0.0000000000000000E+00 + -1.1534006941196866E-02 + -5.9747934565688495E-03 + 5.4057206769491531E-03 + -5.4561275000112728E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6463557204317272E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 11 + 6.6666666666666663E-01 + 3.2592883070618428E+00 + 0.0000000000000000E+00 + -5.3495161336515286E-03 + -4.0600214501888884E-03 + 2.0081145027365790E-03 + 3.9240095890561175E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6703236277233257E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 12 + 1.0000000000000000E+00 + 3.2620392128738844E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.1416491208282560E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5337190475119212E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 13 + 0.0000000000000000E+00 + 4.9232970393460960E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.7520077765233104E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.8026885000619459E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 14 + 3.3333333333333331E-01 + 4.9262220382060811E+00 + 0.0000000000000000E+00 + -4.8960985010108194E-03 + -3.4406043079303200E-02 + -1.4315217706860596E-02 + 4.7081640131623566E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6564703113391654E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 15 + 6.6666666666666663E-01 + 4.9263598690102475E+00 + 0.0000000000000000E+00 + -4.1621379909522081E-03 + -2.4626104929870260E-02 + -1.6095729806326602E-03 + -3.7394266071891153E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6492957008202521E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 16 + 1.0000000000000000E+00 + 4.9250082441982199E+00 + 0.0000000000000000E+00 + -4.4653033063276606E-03 + -2.2255897238424523E-02 + -3.0900366614377563E-04 + 3.9523345114042279E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7164548244692022E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 17 + 0.0000000000000000E+00 + -5.2011175157417960E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 8.3549295809779863E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5880077791350403E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 18 + 3.3333333333333331E-01 + -5.0378001080148060E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.4916810478407998E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5067784102338609E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 19 + 6.6666666666666663E-01 + -4.4698332590849280E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 6.8988386202962433E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2249518349591935E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 20 + 1.0000000000000000E+00 + -4.3556150443797945E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -8.4392374120426741E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1699659151870172E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 21 + 0.0000000000000000E+00 + 1.5905706042946246E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + -3.7758347210060633E-02 + 0.0000000000000000E+00 + -1.6028753903182860E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7758347210060633E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 22 + 3.3333333333333331E-01 + 1.5910297928095765E+00 + 3.3333333333333331E-01 + 5.5472000062262751E-03 + -9.4777907021829696E-03 + 2.6164413140270194E-03 + -2.0456320588223833E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.7525091577875834E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.4770866430971996E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 23 + 6.6666666666666663E-01 + 1.5933875683553149E+00 + 3.3333333333333331E-01 + 2.5798230436419713E-03 + -2.0315816135741560E-04 + 1.8158652701585427E-03 + 4.4064955656566731E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6334783142371131E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.4728578920808985E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 24 + 1.0000000000000000E+00 + 1.5942339919115640E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.8045483882093638E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5899151358670646E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 25 + 0.0000000000000000E+00 + 3.2597372553037389E+00 + 3.3333333333333331E-01 + -1.1893198952854346E-02 + -1.4146674254802816E-01 + 8.4768020623520283E-03 + 2.0650803985546728E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6469694038418113E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 26 + 3.3333333333333331E-01 + 3.2597697967032246E+00 + 3.3333333333333331E-01 + -1.0198296112823245E-02 + -3.9621410229203347E-02 + 2.5312258474611059E-03 + 3.1528760391740982E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6456064478324050E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.4996576585036261E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 27 + 6.6666666666666663E-01 + 3.2593144988768614E+00 + 3.3333333333333331E-01 + -6.2040100668860881E-03 + -4.8266613761903309E-03 + -5.1856969194728438E-04 + -3.7825165143351698E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6687702785659540E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.4979880143889208E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 28 + 1.0000000000000000E+00 + 3.2591316189438704E+00 + 3.3333333333333331E-01 + -4.1357110633068591E-03 + -3.0546229247481313E-03 + -1.8197378759302405E-03 + 3.6701500479956559E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6782312884249706E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 29 + 0.0000000000000000E+00 + 4.9262096009443699E+00 + 3.3333333333333331E-01 + 1.7015522137406695E-02 + 6.3588078987745558E-02 + -1.3155792910324015E-02 + 1.9570287931401970E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6571188060000447E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 30 + 3.3333333333333331E-01 + 4.9261389896981775E+00 + 3.3333333333333331E-01 + -1.3205421620388709E-02 + -7.2422229777531081E-03 + -7.6950815946560070E-03 + -3.3413834354961014E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6605716821186254E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 31 + 6.6666666666666663E-01 + 4.9262996288238066E+00 + 3.3333333333333331E-01 + -1.1014653035559643E-02 + -2.3505246891375668E-02 + 4.8468287160681017E-04 + 3.5854925635579789E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6524227173586381E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 32 + 1.0000000000000000E+00 + 4.9263762892483323E+00 + 3.3333333333333331E-01 + -9.8986841525649048E-03 + -1.8450755173461873E-02 + 5.7281188213556778E-03 + -3.5594727237365111E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6484687271003936E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 33 + 0.0000000000000000E+00 + -5.4081045516570697E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1292432622530068E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6897854182781861E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 34 + 3.3333333333333331E-01 + -5.3215119532525536E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 2.1820045802848829E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6468473796220866E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 35 + 6.6666666666666663E-01 + -5.1777294742393308E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.7729379179931434E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5757031757034140E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 36 + 1.0000000000000000E+00 + -5.0906091382786400E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 2.6487742147902243E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5324752195172200E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 37 + 0.0000000000000000E+00 + 1.5943801624262786E+00 + 6.6666666666666663E-01 + 5.6558070670202189E-03 + -1.1412331679350124E-02 + 1.2982284649723359E-02 + -4.3621959726449727E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5860851598133479E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 38 + 3.3333333333333331E-01 + 1.5947666024286611E+00 + 6.6666666666666663E-01 + 5.5560426379691894E-03 + -7.1190785784175543E-03 + 8.4739574007759201E-03 + 5.4595441709989840E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5665795076574636E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.4793419491522138E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 39 + 6.6666666666666663E-01 + 1.5954283889443432E+00 + 6.6666666666666663E-01 + 5.3037132079329970E-03 + -5.1189816105980971E-03 + 6.7226690530763737E-03 + -6.1918373619046498E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5330805978433626E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.4782673146783249E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 40 + 1.0000000000000000E+00 + 1.5958102417478710E+00 + 6.6666666666666663E-01 + 5.2960354941878644E-03 + -1.8934943736470487E-04 + 9.1660125581158021E-04 + 6.0034665289808471E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5138217121059849E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 41 + 0.0000000000000000E+00 + 3.2591534434311882E+00 + 6.6666666666666663E-01 + -9.1341578659653033E-03 + -4.6558077502082601E-02 + 2.5021260588831348E-03 + 2.7105355040388344E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6764609884242822E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 42 + 3.3333333333333331E-01 + 3.2590991102916993E+00 + 6.6666666666666663E-01 + -6.5244750267415448E-03 + -3.0306660089576831E-02 + 9.3151960283612489E-04 + -4.1303215107569962E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6792301795219286E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.4966638472744349E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 43 + 6.6666666666666663E-01 + 3.2590261173757082E+00 + 6.6666666666666663E-01 + -6.0567298216074542E-03 + -2.1999088087239587E-02 + -1.4648658553315165E-04 + 4.3109560304951877E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6830027999984319E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.4960306410383679E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 44 + 1.0000000000000000E+00 + 3.2589751346178102E+00 + 6.6666666666666663E-01 + -6.1101443681743448E-03 + -3.5155538307889175E-03 + 1.7154295178943964E-04 + -4.2869012799282036E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6855984623992484E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 45 + 0.0000000000000000E+00 + 4.9263439599799543E+00 + 6.6666666666666663E-01 + -1.2634039005569284E-02 + -3.9441313059315085E-03 + -3.3038647691077096E-02 + -3.1791549802035952E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6503177053281585E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 46 + 3.3333333333333331E-01 + 4.9263562970393480E+00 + 6.6666666666666663E-01 + -1.4452957557505901E-02 + -9.9138315252797031E-03 + -9.2691879210206555E-03 + 4.0317306373570805E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6496944562207666E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 47 + 6.6666666666666663E-01 + 4.9263612192849351E+00 + 6.6666666666666663E-01 + -1.6554318241532914E-02 + -9.3889737401538793E-03 + -3.5326273482359210E-03 + -4.0505304197672825E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6494276810031478E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 48 + 1.0000000000000000E+00 + 4.9263707520644209E+00 + 6.6666666666666663E-01 + -1.5963810276292924E-02 + -1.6472119783984576E-02 + 9.1523070135467975E-03 + 4.0670171005648408E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6489479278696585E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 49 + 0.0000000000000000E+00 + -5.4801347788259826E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 9.6114186265311155E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.7252181554219056E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 50 + 3.3333333333333331E-01 + -5.4395630334779517E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 6.1502860515556979E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.7051263663976890E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 51 + 6.6666666666666663E-01 + -5.3523869701779116E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.3985630225705383E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6619122148016542E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 52 + 1.0000000000000000E+00 + -5.3118230754810952E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.4412739898521723E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6418228873537571E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 53 + 0.0000000000000000E+00 + 1.5955142579834303E+00 + 1.0000000000000000E+00 + 3.2539168650405673E-03 + -4.8273296803308923E-03 + 1.3359583047724031E-02 + 3.6093489512706651E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5296494875111550E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 54 + 3.3333333333333331E-01 + 1.5957083352430961E+00 + 1.0000000000000000E+00 + 8.2881280344967966E-03 + -7.1362870533533129E-03 + 1.0579594185269494E-02 + -6.2105884824245381E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5198458214833701E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 55 + 6.6666666666666663E-01 + 1.5961177335457266E+00 + 1.0000000000000000E+00 + 1.0465359600988529E-02 + -1.8637316845133783E-03 + 7.1837390698989805E-03 + 6.5361394725433586E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4991900660218074E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 56 + 1.0000000000000000E+00 + 1.5963118983222917E+00 + 1.0000000000000000E+00 + 1.3221462175504692E-02 + -3.9288496153363148E-03 + 4.6438031085906697E-04 + -6.4614687099033938E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4893827081108157E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 57 + 0.0000000000000000E+00 + 3.2590109080677521E+00 + 1.0000000000000000E+00 + -5.5727129435773314E-03 + -2.1875308019768770E-02 + 3.1623955281148658E-03 + -3.5810943819772874E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6836544041822163E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 58 + 3.3333333333333331E-01 + 3.2589963939523785E+00 + 1.0000000000000000E+00 + -6.1706200124182452E-03 + -2.9643408373550215E-02 + 1.2270346886059764E-03 + 4.3513198007416083E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6844047852097030E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 59 + 6.6666666666666663E-01 + 3.2589605671266839E+00 + 1.0000000000000000E+00 + -5.7390841466610125E-03 + -1.0248037087394544E-02 + 7.2760428186810445E-04 + -4.3971255733116159E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6862401614232342E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 60 + 1.0000000000000000E+00 + 3.2589459642955050E+00 + 1.0000000000000000E+00 + -4.7716596782062526E-03 + -1.6886643448943181E-02 + 4.4633771025712540E-04 + 4.4194626221018494E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6869950093413817E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 61 + 0.0000000000000000E+00 + 4.9263634475169784E+00 + 1.0000000000000000E+00 + -2.2553100455009859E-02 + -1.5307539725773998E-02 + -3.2835285874109894E-02 + 3.4839912484248821E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6493284247425768E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 62 + 3.3333333333333331E-01 + 4.9263605418995926E+00 + 1.0000000000000000E+00 + -2.9043840323204971E-02 + -5.9569126101878785E-03 + -1.4305087804909140E-02 + -4.1013999815186279E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6494745634530576E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 63 + 6.6666666666666663E-01 + 4.9263584404153589E+00 + 1.0000000000000000E+00 + -2.7909197591505362E-02 + -1.6305884400518222E-02 + -4.4045413552126272E-03 + 4.0261566689893149E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6495838612655852E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 64 + 1.0000000000000000E+00 + 4.9263556179438881E+00 + 1.0000000000000000E+00 + -3.0045667097809804E-02 + -5.9928657071654790E-03 + 9.6973516218323407E-03 + -4.0777244717903658E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6497257642256906E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/output/MainTime_2.part0.exelem b/src/fortran/expected_results/output/MainTime_2.part0.exelem new file mode 100644 index 0000000..885a140 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_2.part0.exelem @@ -0,0 +1,887 @@ + Group name: StokesRegion + Shape. Dimension=3 + #Scale factor sets= 2 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + #Nodes= 8 + #Fields=9 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + y. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + z. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2) U, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7) MaterialsMovingMesh, field, rectangular cartesian, #Components=1 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 8) ALE, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 9) MovingMesh, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + Element: 1 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 1 2 5 6 17 18 21 22 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 2 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 2 3 6 7 18 19 22 23 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 3 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 3 4 7 8 19 20 23 24 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 4 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 5 6 9 10 21 22 25 26 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 5 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 6 7 10 11 22 23 26 27 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 6 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 7 8 11 12 23 24 27 28 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 7 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 9 10 13 14 25 26 29 30 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 8 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 10 11 14 15 26 27 30 31 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 9 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 11 12 15 16 27 28 31 32 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 10 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 17 18 21 22 33 34 37 38 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 11 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 18 19 22 23 34 35 38 39 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 12 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 19 20 23 24 35 36 39 40 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 13 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 21 22 25 26 37 38 41 42 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 14 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 22 23 26 27 38 39 42 43 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 15 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 23 24 27 28 39 40 43 44 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 16 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 25 26 29 30 41 42 45 46 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 17 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 26 27 30 31 42 43 46 47 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 18 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 27 28 31 32 43 44 47 48 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 19 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 33 34 37 38 49 50 53 54 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 20 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 34 35 38 39 50 51 54 55 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 21 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 35 36 39 40 51 52 55 56 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 22 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 37 38 41 42 53 54 57 58 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 23 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 38 39 42 43 54 55 58 59 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 24 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 39 40 43 44 55 56 59 60 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 25 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 41 42 45 46 57 58 61 62 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 26 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 42 43 46 47 58 59 62 63 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 27 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 43 44 47 48 59 60 63 64 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/output/MainTime_2.part0.exnode b/src/fortran/expected_results/output/MainTime_2.part0.exnode new file mode 100644 index 0000000..7fa5e54 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_2.part0.exnode @@ -0,0 +1,1699 @@ + Group name: StokesRegion + #Fields=8 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. Value index= 1, #Derivatives= 0 + y. Value index= 2, #Derivatives= 0 + z. Value index= 3, #Derivatives= 0 + 2) U, field, rectangular cartesian, #Components=4 + 1. Value index= 4, #Derivatives= 0 + 2. Value index= 5, #Derivatives= 0 + 3. Value index= 6, #Derivatives= 0 + 4. Value index= 7, #Derivatives= 0 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. Value index= 8, #Derivatives= 0 + 2. Value index= 9, #Derivatives= 0 + 3. Value index= 10, #Derivatives= 0 + 4. Value index= 11, #Derivatives= 0 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. Value index= 12, #Derivatives= 0 + 2. Value index= 13, #Derivatives= 0 + 3. Value index= 14, #Derivatives= 0 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. Value index= 15, #Derivatives= 0 + 2. Value index= 16, #Derivatives= 0 + 3. Value index= 17, #Derivatives= 0 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. Value index= 18, #Derivatives= 0 + 2. Value index= 19, #Derivatives= 0 + 7) ALE, field, rectangular cartesian, #Components=3 + 1. Value index= 20, #Derivatives= 0 + 2. Value index= 21, #Derivatives= 0 + 3. Value index= 22, #Derivatives= 0 + 8) MovingMesh, field, rectangular cartesian, #Components=3 + 1. Value index= 23, #Derivatives= 0 + 2. Value index= 24, #Derivatives= 0 + 3. Value index= 25, #Derivatives= 0 + Node: 1 + 0.0000000000000000E+00 + -6.0191655578933065E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4210293423335081E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.9524856822922421E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 2 + 3.3333333333333331E-01 + -7.3150223261892397E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.7693004990613304E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.3756317124414828E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 3 + 6.6666666666666663E-01 + -6.4106475691949688E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.8313584286809430E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.0864250645439685E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 4 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.5073157205693448E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 5 + 0.0000000000000000E+00 + 1.5197294238221521E+00 + 0.0000000000000000E+00 + 3.0194966383210284E-03 + -1.4336839538932680E-02 + -1.3801767373559176E-02 + 1.2091376670153462E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.7552825814757678E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 6 + 3.3333333333333331E-01 + 1.5538827838640348E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 9.9248444042103827E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6380763439646836E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 7 + 6.6666666666666663E-01 + 1.5578779357431898E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.0751159061222433E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5028460994791573E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 8 + 1.0000000000000000E+00 + 1.5434601455153796E+00 + 0.0000000000000000E+00 + -3.1125163756250390E-03 + 1.1924741573556337E-03 + -2.9215495153122246E-03 + 4.1243349935742639E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.9680079769600980E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 9 + 0.0000000000000000E+00 + 3.2339859306969387E+00 + 0.0000000000000000E+00 + -2.1734389805869180E-02 + -6.0480137026715577E-02 + 1.4424168425989446E-02 + 1.8589881937554062E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.1917093085472803E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 10 + 3.3333333333333331E-01 + 3.2248324302113276E+00 + 0.0000000000000000E+00 + -1.5127116381735004E-02 + -7.7235565096665281E-03 + 5.6355605445057117E-03 + -5.1198573278817703E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4919112427398952E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 11 + 6.6666666666666663E-01 + 3.2241198353520386E+00 + 0.0000000000000000E+00 + -6.7920074048172744E-03 + -5.4661581169858338E-03 + 2.5986161228957272E-03 + 3.3292533220097105E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5168471709804083E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 12 + 1.0000000000000000E+00 + 3.2281838646970584E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5748830330188928E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3855348176825957E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 13 + 0.0000000000000000E+00 + 4.8868487235567786E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4279443883112810E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6448315789317315E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 14 + 3.3333333333333331E-01 + 4.8911984963196522E+00 + 0.0000000000000000E+00 + -5.9571705040949849E-03 + -4.3617349328380524E-02 + -1.3609869274320761E-02 + 4.3803568918465636E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5023541886428984E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 15 + 6.6666666666666663E-01 + 4.8914117665873773E+00 + 0.0000000000000000E+00 + -5.8579785007788349E-03 + -3.3531458606335995E-02 + 1.3902204649563613E-03 + -3.2453422062677380E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4948102422869935E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 16 + 1.0000000000000000E+00 + 4.8894137652916472E+00 + 0.0000000000000000E+00 + -5.8882663077296712E-03 + -2.9525623709779736E-02 + 7.5755735395521464E-03 + 3.4888357472616782E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5594478906572517E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 17 + 0.0000000000000000E+00 + -7.7000185749059619E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 7.4420136259436219E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4989010591641651E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 18 + 3.3333333333333331E-01 + -7.4583185348682912E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.2247251980513118E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4205184268534859E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 19 + 6.6666666666666663E-01 + -6.6197522413160986E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 6.7178561042904752E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1499189822311707E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 20 + 1.0000000000000000E+00 + -6.4560913160649311E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -9.1304236876805689E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1004762716851363E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 21 + 0.0000000000000000E+00 + 1.5543171978523933E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + -3.6253406442231288E-02 + 0.0000000000000000E+00 + -1.4338684557779267E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6253406442231288E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 22 + 3.3333333333333331E-01 + 1.5550107749693824E+00 + 3.3333333333333331E-01 + 5.0752699008586961E-03 + -1.0202881569834617E-02 + 2.4238099252793452E-03 + -1.9629665357998285E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6019017840193915E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.2378472004271308E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 23 + 6.6666666666666663E-01 + 1.5585513049510751E+00 + 3.3333333333333331E-01 + 2.5052896987146195E-03 + -1.1441689598499876E-03 + 2.1293363907534451E-03 + 3.6626859128921310E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4836263404239787E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.2297923156943628E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 24 + 1.0000000000000000E+00 + 1.5598468405070272E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8270268151908047E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4387151404536853E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 25 + 0.0000000000000000E+00 + 3.2248141110512996E+00 + 3.3333333333333331E-01 + -1.5799166412788418E-02 + -1.3831414492748995E-01 + 8.2811364603001328E-03 + 1.9299903145960522E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4923144252439288E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 26 + 3.3333333333333331E-01 + 3.2248548948626654E+00 + 3.3333333333333331E-01 + -1.3483506020378023E-02 + -4.4216865350547988E-02 + 2.6170526335273551E-03 + 2.8008639388392398E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4914901840559308E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.2804727928034784E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 27 + 6.6666666666666663E-01 + 3.2241660207270404E+00 + 3.3333333333333331E-01 + -8.7708289141300560E-03 + -9.8007885059578290E-03 + -7.0574814583562111E-04 + -3.2209464565157915E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5148478149820847E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.2772359480647804E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 28 + 1.0000000000000000E+00 + 3.2238846546457478E+00 + 3.3333333333333331E-01 + -6.3289789224298225E-03 + -4.5086017692524795E-03 + -1.8801353196859309E-03 + 3.0661862981174419E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5246964298122477E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 29 + 0.0000000000000000E+00 + 4.8911792305467579E+00 + 3.3333333333333331E-01 + 9.5109484967293711E-03 + 4.9089504529387262E-02 + -1.3617170972803065E-02 + 1.4455246054254661E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5030370397611837E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 30 + 3.3333333333333331E-01 + 4.8910764189536380E+00 + 3.3333333333333331E-01 + -1.7536828772573558E-02 + -1.5672514486535005E-02 + -5.0942709608153749E-03 + -3.0042005552988460E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5062570744539862E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 31 + 6.6666666666666663E-01 + 4.8913187635153426E+00 + 3.3333333333333331E-01 + -1.6653549510107082E-02 + -3.0465956148543749E-02 + 5.1940363914536750E-03 + 3.1349509249310201E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4980865308464275E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 32 + 1.0000000000000000E+00 + 4.8914363564610044E+00 + 3.3333333333333331E-01 + -1.4835710330403828E-02 + -2.7298051887560543E-02 + 1.4592590807599018E-02 + -3.0739231108946479E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4939932787327745E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 33 + 0.0000000000000000E+00 + -8.0028594369087186E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.8950521690466996E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5947548852516496E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 34 + 3.3333333333333331E-01 + -7.8750943528199738E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.6642500966545035E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5535823995674202E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 35 + 6.6666666666666663E-01 + -7.6633907362784442E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2523739909608959E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4856612620391131E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 36 + 1.0000000000000000E+00 + -7.5347623030649069E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 7.1327518637511211E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4441531647862665E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 37 + 0.0000000000000000E+00 + 1.5599623293040805E+00 + 6.6666666666666663E-01 + 5.8435100680355361E-03 + -1.2840023359819876E-02 + 1.3255469110541193E-02 + -2.7326940835412766E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4417833122197990E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 38 + 3.3333333333333331E-01 + 1.5605424928430784E+00 + 6.6666666666666663E-01 + 5.9771134856158670E-03 + -8.6605267485952431E-03 + 9.1899347906329101E-03 + 4.7990213158711139E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4224109585582738E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.2420493067530424E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 39 + 6.6666666666666663E-01 + 1.5615387965726379E+00 + 6.6666666666666663E-01 + 5.8776845322081181E-03 + -6.0142475126684167E-03 + 7.2057648754038067E-03 + -5.3389721394765184E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3889592371705302E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.2400110197582783E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 40 + 1.0000000000000000E+00 + 1.5621116139505675E+00 + 6.6666666666666663E-01 + 6.4028678136438515E-03 + -1.2970611698604026E-03 + 8.6782241795770900E-04 + 5.0915194404375441E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3698627797303496E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 41 + 0.0000000000000000E+00 + 3.2239370802482692E+00 + 6.6666666666666663E-01 + -1.3074248234716810E-02 + -5.4103386840292977E-02 + 3.1319391002051522E-03 + 2.3293691287525142E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5216363182919090E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 42 + 3.3333333333333331E-01 + 3.2238547347926421E+00 + 6.6666666666666663E-01 + -1.0054765781666223E-02 + -3.7935921894369284E-02 + 1.4166543303061651E-03 + -3.6101872513345801E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5244375499057276E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.2747724809981550E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 43 + 6.6666666666666663E-01 + 3.2237425874819006E+00 + 6.6666666666666663E-01 + -9.4675165817217858E-03 + -2.7075068432334086E-02 + 5.0115823735880647E-04 + 3.7227699361419693E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5283529893807813E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.2735438168595092E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 44 + 1.0000000000000000E+00 + 3.2236654051856011E+00 + 6.6666666666666663E-01 + -9.6205932194209486E-03 + -9.0237810680080452E-03 + 1.1074156017718126E-03 + -3.6942297178151309E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5309729432208961E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 45 + 0.0000000000000000E+00 + 4.8913814445421773E+00 + 6.6666666666666663E-01 + -2.2754541850971529E-02 + -1.4163083080604173E-02 + -3.3209705528182934E-02 + -2.7961894574209172E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4962515437776703E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 46 + 3.3333333333333331E-01 + 4.8913999779398374E+00 + 6.6666666666666663E-01 + -2.4149515161996187E-02 + -1.8112194593045240E-02 + -7.6525282520688992E-03 + 3.5858458636970627E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4956319099510316E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 47 + 6.6666666666666663E-01 + 4.8914078916362582E+00 + 6.6666666666666663E-01 + -2.5585263022119949E-02 + -1.8165184114113879E-02 + 1.7978789438339339E-03 + -3.5532126747670212E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4953327648677181E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 48 + 1.0000000000000000E+00 + 4.8914221552043555E+00 + 6.6666666666666663E-01 + -2.4757138940120466E-02 + -2.2835383157841380E-02 + 1.7746384979872444E-02 + 3.5740464165638262E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4948596860065663E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 49 + 0.0000000000000000E+00 + -8.1082976843644419E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 8.6463000278093460E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6281629055384594E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 50 + 3.3333333333333331E-01 + -8.0485106352091773E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 7.4169275985198502E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6089476017312260E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 51 + 6.6666666666666663E-01 + -7.9199206832936450E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.1171116755883372E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5675337131157331E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 52 + 1.0000000000000000E+00 + -7.8601409725537891E-02 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0726512236944510E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.5483178970726942E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 53 + 0.0000000000000000E+00 + 1.5616413856831515E+00 + 1.0000000000000000E+00 + 3.5974544841502814E-03 + -7.0082375665700292E-03 + 1.4507260591582459E-02 + 3.0742878366280664E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3872872300278717E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 54 + 3.3333333333333331E-01 + 1.5619329655550673E+00 + 1.0000000000000000E+00 + 9.0688202917337812E-03 + -8.4810044518336420E-03 + 1.1696865281697612E-02 + -5.4407738250483977E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3775369688028793E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 55 + 6.6666666666666663E-01 + 1.5625473230672657E+00 + 1.0000000000000000E+00 + 1.1964935498040638E-02 + -3.4443220537806862E-03 + 8.0159996755376252E-03 + 5.6643158737508070E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3570410478460821E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 56 + 1.0000000000000000E+00 + 1.5628390142808617E+00 + 1.0000000000000000E+00 + 1.5020048140089710E-02 + -4.7231791183783792E-03 + 6.3801408022751301E-04 + -5.5657713553888284E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3472884041429923E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 57 + 0.0000000000000000E+00 + 3.2237231433277280E+00 + 1.0000000000000000E+00 + -1.0368731682527579E-02 + -3.2165862174659485E-02 + 4.0086656028865356E-03 + -3.0839194742826073E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5287764740024215E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 58 + 3.3333333333333331E-01 + 3.2237008390646782E+00 + 1.0000000000000000E+00 + -1.0253148831052609E-02 + -3.6748730016930735E-02 + 2.2477086989981568E-03 + 3.8051683047412177E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5295554887700469E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 59 + 6.6666666666666663E-01 + 3.2236462725712229E+00 + 1.0000000000000000E+00 + -9.4952956594429767E-03 + -1.7941915938486611E-02 + 1.8829473676129993E-03 + -3.8003120123128435E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5314294555461194E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 60 + 1.0000000000000000E+00 + 3.2236238349083943E+00 + 1.0000000000000000E+00 + -7.7667454451350818E-03 + -2.1467767236080633E-02 + 1.6057046643545162E-03 + 3.8376016894244196E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.5322129387110851E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 61 + 0.0000000000000000E+00 + 4.8914108594383361E+00 + 1.0000000000000000E+00 + -3.5201917288816803E-02 + -2.4244962587275234E-02 + -3.3625975551663065E-02 + 3.0564540310472692E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4952588078642058E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 62 + 3.3333333333333331E-01 + 4.8914065094000687E+00 + 1.0000000000000000E+00 + -4.1752498550907277E-02 + -1.5793315035433696E-02 + -1.2557042921268604E-02 + -3.6411764072275434E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4954032499523467E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 63 + 6.6666666666666663E-01 + 4.8914032545509070E+00 + 1.0000000000000000E+00 + -4.0999131290162832E-02 + -2.4188117319013540E-02 + 8.9984558292622793E-04 + 3.5366604527371162E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4955185864451760E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 64 + 1.0000000000000000E+00 + 4.8913990307824777E+00 + 1.0000000000000000E+00 + -4.3061664572773384E-02 + -1.4513424971351640E-02 + 1.8593366335136349E-02 + -3.5917247989049188E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.4956587161410431E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/output/MainTime_3.part0.exelem b/src/fortran/expected_results/output/MainTime_3.part0.exelem new file mode 100644 index 0000000..885a140 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_3.part0.exelem @@ -0,0 +1,887 @@ + Group name: StokesRegion + Shape. Dimension=3 + #Scale factor sets= 2 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + #Nodes= 8 + #Fields=9 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + y. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + z. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2) U, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7) MaterialsMovingMesh, field, rectangular cartesian, #Components=1 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 8) ALE, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 9) MovingMesh, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + Element: 1 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 1 2 5 6 17 18 21 22 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 2 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 2 3 6 7 18 19 22 23 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 3 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 3 4 7 8 19 20 23 24 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 4 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 5 6 9 10 21 22 25 26 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 5 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 6 7 10 11 22 23 26 27 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 6 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 7 8 11 12 23 24 27 28 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 7 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 9 10 13 14 25 26 29 30 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 8 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 10 11 14 15 26 27 30 31 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 9 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 11 12 15 16 27 28 31 32 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 10 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 17 18 21 22 33 34 37 38 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 11 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 18 19 22 23 34 35 38 39 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 12 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 19 20 23 24 35 36 39 40 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 13 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 21 22 25 26 37 38 41 42 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 14 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 22 23 26 27 38 39 42 43 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 15 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 23 24 27 28 39 40 43 44 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 16 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 25 26 29 30 41 42 45 46 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 17 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 26 27 30 31 42 43 46 47 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 18 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 27 28 31 32 43 44 47 48 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 19 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 33 34 37 38 49 50 53 54 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 20 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 34 35 38 39 50 51 54 55 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 21 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 35 36 39 40 51 52 55 56 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 22 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 37 38 41 42 53 54 57 58 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 23 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 38 39 42 43 54 55 58 59 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 24 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 39 40 43 44 55 56 59 60 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 25 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 41 42 45 46 57 58 61 62 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 26 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 42 43 46 47 58 59 62 63 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 27 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 43 44 47 48 59 60 63 64 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/output/MainTime_3.part0.exnode b/src/fortran/expected_results/output/MainTime_3.part0.exnode new file mode 100644 index 0000000..ea23763 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_3.part0.exnode @@ -0,0 +1,1699 @@ + Group name: StokesRegion + #Fields=8 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. Value index= 1, #Derivatives= 0 + y. Value index= 2, #Derivatives= 0 + z. Value index= 3, #Derivatives= 0 + 2) U, field, rectangular cartesian, #Components=4 + 1. Value index= 4, #Derivatives= 0 + 2. Value index= 5, #Derivatives= 0 + 3. Value index= 6, #Derivatives= 0 + 4. Value index= 7, #Derivatives= 0 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. Value index= 8, #Derivatives= 0 + 2. Value index= 9, #Derivatives= 0 + 3. Value index= 10, #Derivatives= 0 + 4. Value index= 11, #Derivatives= 0 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. Value index= 12, #Derivatives= 0 + 2. Value index= 13, #Derivatives= 0 + 3. Value index= 14, #Derivatives= 0 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. Value index= 15, #Derivatives= 0 + 2. Value index= 16, #Derivatives= 0 + 3. Value index= 17, #Derivatives= 0 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. Value index= 18, #Derivatives= 0 + 2. Value index= 19, #Derivatives= 0 + 7) ALE, field, rectangular cartesian, #Components=3 + 1. Value index= 20, #Derivatives= 0 + 2. Value index= 21, #Derivatives= 0 + 3. Value index= 22, #Derivatives= 0 + 8) MovingMesh, field, rectangular cartesian, #Components=3 + 1. Value index= 23, #Derivatives= 0 + 2. Value index= 24, #Derivatives= 0 + 3. Value index= 25, #Derivatives= 0 + Node: 1 + 0.0000000000000000E+00 + -7.8526027285582042E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1729285021408945E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.8334371706648978E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 2 + 3.3333333333333331E-01 + -9.5482420844597099E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.7482795243008056E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2332197582704702E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 3 + 6.6666666666666663E-01 + -8.3761693409243887E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.7535778175925429E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.9655217717294206E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 4 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.5878607382273104E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 5 + 0.0000000000000000E+00 + 1.4751790976127337E+00 + 0.0000000000000000E+00 + 2.4541898867918386E-03 + -1.3656894135190320E-02 + -1.2945182289471550E-02 + 9.8195003233647538E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.4550326209418400E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 6 + 3.3333333333333331E-01 + 1.5199078562682931E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 9.3946785866394737E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3974927595741805E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 7 + 6.6666666666666663E-01 + 1.5252249408262473E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6491025072323371E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2652994916942589E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 8 + 1.0000000000000000E+00 + 1.5064645714660105E+00 + 0.0000000000000000E+00 + -3.1928049129306474E-03 + 1.2330164296110960E-03 + -2.9077580275099582E-03 + 3.6823609629053173E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.6995574049369026E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 9 + 0.0000000000000000E+00 + 3.2042970588939559E+00 + 0.0000000000000000E+00 + -2.2344658629717053E-02 + -5.9206159228170761E-02 + 1.3472331447202317E-02 + 1.7233079742236819E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9688871802982807E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 10 + 3.3333333333333331E-01 + 3.1922950576862852E+00 + 0.0000000000000000E+00 + -1.6088646060692480E-02 + -8.1173401982718007E-03 + 5.6666028886387838E-03 + -4.7821175432529675E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2537372525042206E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 11 + 6.6666666666666663E-01 + 3.1913315322301949E+00 + 0.0000000000000000E+00 + -7.0631353430280295E-03 + -5.5109583486372474E-03 + 2.8563153709091826E-03 + 3.0073311201792361E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2788303121843575E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 12 + 1.0000000000000000E+00 + 3.1966231893371573E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2825844350597850E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.1560675359901098E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 13 + 0.0000000000000000E+00 + 4.8528568200768367E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2469948079470923E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3991903479941986E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 14 + 3.3333333333333331E-01 + 4.8585568493070799E+00 + 0.0000000000000000E+00 + -6.5747912410704561E-03 + -4.4474840693177899E-02 + -1.0326380006945541E-02 + 4.0980467293749276E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2641647012572474E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 15 + 6.6666666666666663E-01 + 4.8588467061920237E+00 + 0.0000000000000000E+00 + -6.8926519108942451E-03 + -3.4592251141754883E-02 + 6.4451159919158979E-03 + -2.9668843608048201E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2565060395353826E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 16 + 1.0000000000000000E+00 + 4.8562436447035902E+00 + 0.0000000000000000E+00 + -7.0571553452244661E-03 + -2.9814956767424398E-02 + 1.5220400932115314E-02 + 3.2239089283591835E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3170120588057170E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 17 + 0.0000000000000000E+00 + -1.0047483291860305E-01 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 6.8349725822073864E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.3474647169543440E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 18 + 3.3333333333333331E-01 + -9.7321799623742544E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.0976980218108592E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2738614275059636E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 19 + 6.6666666666666663E-01 + -8.6408184785541270E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 6.4153800530207770E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.0210662372380291E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 20 + 1.0000000000000000E+00 + -8.4341427468403687E-02 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -9.0528592595712709E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.9780514307754380E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 21 + 0.0000000000000000E+00 + 1.5204493439715641E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + -3.3867853880829177E-02 + 0.0000000000000000E+00 + -1.3116713923555164E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3867853880829177E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 22 + 3.3333333333333331E-01 + 1.5213714913091447E+00 + 3.3333333333333331E-01 + 4.6527415719694399E-03 + -9.8282668537888283E-03 + 2.2063489023794228E-03 + -1.8623772301619472E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3639283660237614E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.8749103806165872E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 23 + 6.6666666666666663E-01 + 1.5260541958418108E+00 + 3.3333333333333331E-01 + 2.3177350381519907E-03 + -1.3505169581075815E-03 + 2.1483052011852725E-03 + 3.2988113540739779E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2497109109264330E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.8638052082239175E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 24 + 1.0000000000000000E+00 + 1.5277983173685969E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4160222715292510E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2048523138430304E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 25 + 0.0000000000000000E+00 + 3.1922747061224985E+00 + 3.3333333333333331E-01 + -1.7132466935026146E-02 + -1.3037910548181125E-01 + 7.9521372465323203E-03 + 1.7845159397636339E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2539404928801016E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 26 + 3.3333333333333331E-01 + 3.1923187369985859E+00 + 3.3333333333333331E-01 + -1.4537507075310659E-02 + -4.3522513338169429E-02 + 2.5669965026147135E-03 + 2.5775571247792950E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2536157864079394E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.9331703815430498E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 27 + 6.6666666666666663E-01 + 3.1914012430066236E+00 + 3.3333333333333331E-01 + -9.7141237647332991E-03 + -1.1031913082667790E-02 + -7.3979851859449467E-04 + -2.9135671791370128E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2764777720416555E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.9286312570353111E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 28 + 1.0000000000000000E+00 + 3.1910206534979335E+00 + 3.3333333333333331E-01 + -7.3994170718501371E-03 + -4.7265258214847887E-03 + -1.8188703591003421E-03 + 2.7543617162498948E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2864001147814230E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 29 + 0.0000000000000000E+00 + 4.8585306528829850E+00 + 3.3333333333333331E-01 + 4.5069327806857721E-03 + 4.0583698030967230E-02 + -1.2398063057496512E-02 + 1.3985488733751411E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2648577663772729E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 30 + 3.3333333333333331E-01 + 4.8583986117424329E+00 + 3.3333333333333331E-01 + -2.0394292461345585E-02 + -1.8654628162397886E-02 + -1.3172587082237214E-03 + -2.7806858019130880E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2677807211205098E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 31 + 6.6666666666666663E-01 + 4.8587205014475021E+00 + 3.3333333333333331E-01 + -1.9813636074339471E-02 + -3.1911516615248929E-02 + 1.0686906042439312E-02 + 2.8711950361363385E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2598262067840791E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 32 + 1.0000000000000000E+00 + 4.8588791340883457E+00 + 3.3333333333333331E-01 + -1.7702227793367470E-02 + -2.9274400844113872E-02 + 2.2302832897221368E-02 + -2.8019822244123924E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2557222372658956E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 33 + 0.0000000000000000E+00 + -1.0438079809755510E-01 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.7373309010390525E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4352203728467910E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 34 + 3.3333333333333331E-01 + -1.0271900301263302E-01 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.4359442136241740E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.3968059484433285E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 35 + 6.6666666666666663E-01 + -9.9971036919912062E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -9.1266109643137847E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.3337129557127620E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 36 + 1.0000000000000000E+00 + -9.8296916909772325E-02 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 8.4247883158924675E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2949293879123252E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 37 + 0.0000000000000000E+00 + 1.5278216991183833E+00 + 6.6666666666666663E-01 + 5.4098183156776032E-03 + -1.2653034960507055E-02 + 1.2758975934226514E-02 + -2.5652036147383533E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2140630185697190E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 38 + 3.3333333333333331E-01 + 1.5285888290991414E+00 + 6.6666666666666663E-01 + 5.6261622473367228E-03 + -8.7569938172166340E-03 + 8.9745118270952978E-03 + 4.4125973146251862E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.1953663743936989E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.8805736828575676E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 39 + 6.6666666666666663E-01 + 1.5299096128989083E+00 + 6.6666666666666663E-01 + 5.6068491315254092E-03 + -6.0915447707837467E-03 + 7.0005888482179025E-03 + -4.8696448700703403E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.1629183673729723E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.8777751534920630E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 40 + 1.0000000000000000E+00 + 1.5306664416114404E+00 + 6.6666666666666663E-01 + 6.3631301688653859E-03 + -1.5836685213209366E-03 + 6.9172462052451730E-04 + 4.6138396111036766E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.1445172339127053E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 41 + 0.0000000000000000E+00 + 3.1911145131633130E+00 + 6.6666666666666663E-01 + -1.4778111847203505E-02 + -5.4411250858230766E-02 + 3.2160021053449935E-03 + 2.1328977200318264E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2822567084956421E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 42 + 3.3333333333333331E-01 + 3.1910046756587089E+00 + 6.6666666666666663E-01 + -1.1578017231803702E-02 + -3.8888620279933707E-02 + 1.5970267357525410E-03 + -3.3095947097023584E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2850059133933129E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.9253158436239286E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 43 + 6.6666666666666663E-01 + 3.1908532273369294E+00 + 6.6666666666666663E-01 + -1.1057031019688232E-02 + -2.7873024330643030E-02 + 9.7365671433580713E-04 + 3.3910073896337916E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2889360144971222E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.9235913595899648E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 44 + 1.0000000000000000E+00 + 3.1907503872784542E+00 + 6.6666666666666663E-01 + -1.1386714522951726E-02 + -1.0630830172436618E-02 + 1.6997161585498011E-03 + -3.3673489655443234E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2915017907146744E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 45 + 0.0000000000000000E+00 + 4.8587985787293038E+00 + 6.6666666666666663E-01 + -2.8655502532827216E-02 + -1.9173703632859522E-02 + -3.0332601420946119E-02 + -2.5794768557504226E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2582865812873500E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 46 + 3.3333333333333331E-01 + 4.8588230946875264E+00 + 6.6666666666666663E-01 + -2.9778512632612331E-02 + -2.1743412406659130E-02 + -3.8480042940630260E-03 + 3.3136623327321368E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2576883252311277E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 47 + 6.6666666666666663E-01 + 4.8588341947698979E+00 + 6.6666666666666663E-01 + -3.0673017156677813E-02 + -2.1570020405220658E-02 + 7.5450422701853793E-03 + -3.2625566243528290E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2573696866360399E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 48 + 1.0000000000000000E+00 + 4.8588529873337993E+00 + 6.6666666666666663E-01 + -2.9615055999842925E-02 + -2.4791810523153081E-02 + 2.5150762145715249E-02 + 3.2869025612804870E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2569167870556526E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 49 + 0.0000000000000000E+00 + -1.0574147177807834E-01 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 7.9469209649503885E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4658494934433919E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 50 + 3.3333333333333331E-01 + -1.0496478194883301E-01 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 7.4434059873985292E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4479675596741232E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 51 + 6.6666666666666663E-01 + -1.0329268190093560E-01 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -9.8681574401886418E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.4093475067999151E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 52 + 1.0000000000000000E+00 + -1.0251603317978449E-01 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 8.9829196963651192E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.3914623454246595E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 53 + 0.0000000000000000E+00 + 1.5300126772228564E+00 + 1.0000000000000000E+00 + 3.1458847687419788E-03 + -7.5026627443473140E-03 + 1.4149660076540909E-02 + 2.8182178302595142E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.1628708460295134E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 54 + 3.3333333333333331E-01 + 1.5303984728539177E+00 + 1.0000000000000000E+00 + 8.6815820081905248E-03 + -8.6036185436190963E-03 + 1.1448087534866888E-02 + -4.9931033542817724E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.1534492701149518E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 55 + 6.6666666666666663E-01 + 1.5312104548137295E+00 + 1.0000000000000000E+00 + 1.1749718309976799E-02 + -3.8772204388760221E-03 + 7.9074839333829281E-03 + 5.1801985815489120E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.1336868253536196E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 56 + 1.0000000000000000E+00 + 1.5315963741775114E+00 + 1.0000000000000000E+00 + 1.4766358450387068E-02 + -4.8419256019915837E-03 + 5.6152796923048551E-04 + -5.0746138387341366E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.1242640103350303E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 57 + 0.0000000000000000E+00 + 3.1908317192762596E+00 + 1.0000000000000000E+00 + -1.2791877323547840E-02 + -3.4862440181701398E-02 + 4.2365046288631910E-03 + -2.8125447600133309E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2891424051468422E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 58 + 3.3333333333333331E-01 + 3.1908015953873679E+00 + 1.0000000000000000E+00 + -1.2338352345410013E-02 + -3.8123716098873703E-02 + 2.7001045637964371E-03 + 3.4872861577445580E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2899243677310494E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 59 + 6.6666666666666663E-01 + 3.1907284880768469E+00 + 1.0000000000000000E+00 + -1.1399372891338222E-02 + -2.0350550110543469E-02 + 2.5960299331879624E-03 + -3.4618957124048837E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2917784494375796E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 60 + 1.0000000000000000E+00 + 3.1906981868928277E+00 + 1.0000000000000000E+00 + -9.2853722534507049E-03 + -2.2645215620592709E-02 + 2.2801995997340230E-03 + 3.5069599508174116E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2925648015566633E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 61 + 0.0000000000000000E+00 + 4.8588376614368425E+00 + 1.0000000000000000E+00 + -4.2627147135301920E-02 + -2.8994875367873627E-02 + -3.0610359856297568E-02 + 2.8121985875077078E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2573198001493990E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 62 + 3.3333333333333331E-01 + 4.8588319208747057E+00 + 1.0000000000000000E+00 + -4.8670661676493657E-02 + -2.0702930560146163E-02 + -8.2984383399708084E-03 + -3.3580042043124143E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2574588525363282E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 63 + 6.6666666666666663E-01 + 4.8588274863269874E+00 + 1.0000000000000000E+00 + -4.7893241357660751E-02 + -2.7853861741900084E-02 + 6.7974016167695068E-03 + 3.2495060962853937E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2575768223919901E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 64 + 1.0000000000000000E+00 + 4.8588219148856666E+00 + 1.0000000000000000E+00 + -4.9745106357330947E-02 + -1.8354736529853907E-02 + 2.6180639728306660E-02 + -3.3022132285687138E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2577115896810907E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/output/MainTime_4.part0.exelem b/src/fortran/expected_results/output/MainTime_4.part0.exelem new file mode 100644 index 0000000..885a140 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_4.part0.exelem @@ -0,0 +1,887 @@ + Group name: StokesRegion + Shape. Dimension=3 + #Scale factor sets= 2 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + l.Lagrange*l.Lagrange*l.Lagrange, #Scale factors=8 + #Nodes= 8 + #Fields=9 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + y. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + z. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2) U, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7) MaterialsMovingMesh, field, rectangular cartesian, #Components=1 + 1. constant*constant*constant, no modify, grid based. + #xi1=0, #xi2=0, #xi3=0 + 8) ALE, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 2. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 3. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 4. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 5. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 6. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 7. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 8. #Values=1 + Value indices: 1 + Scale factor indices: -1 + 9) MovingMesh, field, rectangular cartesian, #Components=3 + 1. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 2. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + 3. l.Lagrange*l.Lagrange*l.Lagrange, no modify, standard node based. + #Nodes= 8 + 1. #Values=1 + Value indices: 1 + Scale factor indices: 9 + 2. #Values=1 + Value indices: 1 + Scale factor indices: 10 + 3. #Values=1 + Value indices: 1 + Scale factor indices: 11 + 4. #Values=1 + Value indices: 1 + Scale factor indices: 12 + 5. #Values=1 + Value indices: 1 + Scale factor indices: 13 + 6. #Values=1 + Value indices: 1 + Scale factor indices: 14 + 7. #Values=1 + Value indices: 1 + Scale factor indices: 15 + 8. #Values=1 + Value indices: 1 + Scale factor indices: 16 + Element: 1 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 1 2 5 6 17 18 21 22 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 2 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 2 3 6 7 18 19 22 23 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 3 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 3 4 7 8 19 20 23 24 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 4 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 5 6 9 10 21 22 25 26 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 5 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 6 7 10 11 22 23 26 27 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 6 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 7 8 11 12 23 24 27 28 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 7 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 9 10 13 14 25 26 29 30 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 8 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 10 11 14 15 26 27 30 31 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 9 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 11 12 15 16 27 28 31 32 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 10 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 17 18 21 22 33 34 37 38 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 11 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 18 19 22 23 34 35 38 39 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 12 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 19 20 23 24 35 36 39 40 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 13 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 21 22 25 26 37 38 41 42 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 14 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 22 23 26 27 38 39 42 43 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 15 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 23 24 27 28 39 40 43 44 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 16 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 25 26 29 30 41 42 45 46 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 17 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 26 27 30 31 42 43 46 47 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 18 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 27 28 31 32 43 44 47 48 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 19 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 33 34 37 38 49 50 53 54 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 20 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 34 35 38 39 50 51 54 55 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 21 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 35 36 39 40 51 52 55 56 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 22 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 37 38 41 42 53 54 57 58 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 23 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 38 39 42 43 54 55 58 59 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 24 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 39 40 43 44 55 56 59 60 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 25 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 41 42 45 46 57 58 61 62 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 26 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 42 43 46 47 58 59 62 63 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + Element: 27 0 0 + Values: + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Nodes: + 43 44 47 48 59 60 63 64 + Scale factors: + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 + 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/output/MainTime_4.part0.exnode b/src/fortran/expected_results/output/MainTime_4.part0.exnode new file mode 100644 index 0000000..4b67595 --- /dev/null +++ b/src/fortran/expected_results/output/MainTime_4.part0.exnode @@ -0,0 +1,1699 @@ + Group name: StokesRegion + #Fields=8 + 1) Coordinate, coordinate, rectangular cartesian, #Components=3 + x. Value index= 1, #Derivatives= 0 + y. Value index= 2, #Derivatives= 0 + z. Value index= 3, #Derivatives= 0 + 2) U, field, rectangular cartesian, #Components=4 + 1. Value index= 4, #Derivatives= 0 + 2. Value index= 5, #Derivatives= 0 + 3. Value index= 6, #Derivatives= 0 + 4. Value index= 7, #Derivatives= 0 + 3) del U_del n, field, rectangular cartesian, #Components=4 + 1. Value index= 8, #Derivatives= 0 + 2. Value index= 9, #Derivatives= 0 + 3. Value index= 10, #Derivatives= 0 + 4. Value index= 11, #Derivatives= 0 + 4) Phi, field, rectangular cartesian, #Components=3 + 1. Value index= 12, #Derivatives= 0 + 2. Value index= 13, #Derivatives= 0 + 3. Value index= 14, #Derivatives= 0 + 5) del Phi_del n, field, rectangular cartesian, #Components=3 + 1. Value index= 15, #Derivatives= 0 + 2. Value index= 16, #Derivatives= 0 + 3. Value index= 17, #Derivatives= 0 + 6) MaterialsALE, field, rectangular cartesian, #Components=2 + 1. Value index= 18, #Derivatives= 0 + 2. Value index= 19, #Derivatives= 0 + 7) ALE, field, rectangular cartesian, #Components=3 + 1. Value index= 20, #Derivatives= 0 + 2. Value index= 21, #Derivatives= 0 + 3. Value index= 22, #Derivatives= 0 + 8) MovingMesh, field, rectangular cartesian, #Components=3 + 1. Value index= 23, #Derivatives= 0 + 2. Value index= 24, #Derivatives= 0 + 3. Value index= 25, #Derivatives= 0 + Node: 1 + 0.0000000000000000E+00 + -9.5210792312274556E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.9295471545678843E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.6684765026692507E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 2 + 3.3333333333333331E-01 + -1.1582575633086718E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.6403682987538954E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.0343335486270084E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 3 + 6.6666666666666663E-01 + -1.0170313098742445E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.3300171055107901E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.7941437578180567E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 4 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.2175603143156843E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 5 + 0.0000000000000000E+00 + 1.4347282478939862E+00 + 0.0000000000000000E+00 + 1.9628237495421252E-03 + -1.2501809819207836E-02 + -1.1711617579193222E-02 + 8.2510763971413048E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -4.0450849718747378E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 6 + 3.3333333333333331E-01 + 1.4891539264007345E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 8.5820269088757701E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.0753929867558431E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 7 + 6.6666666666666663E-01 + 1.4957196978336040E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.2522137246101988E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9505242992643257E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 8 + 1.0000000000000000E+00 + 1.4730311179048128E+00 + 0.0000000000000000E+00 + -3.0778849029401995E-03 + 1.0094926529408850E-03 + -2.7720686335185899E-03 + 3.2932374922979193E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.3433453561197708E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 9 + 0.0000000000000000E+00 + 3.1775249240881820E+00 + 0.0000000000000000E+00 + -2.1579998512531201E-02 + -5.5104712508103608E-02 + 1.2824842683582216E-02 + 1.5461865616312047E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.6772134805774023E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 10 + 3.3333333333333331E-01 + 3.1629053017311084E+00 + 0.0000000000000000E+00 + -1.5867902611670866E-02 + -7.8342283682674690E-03 + 5.8484964337128676E-03 + -4.3327218667608660E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9389755955176667E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 11 + 6.6666666666666663E-01 + 3.1616987343276843E+00 + 0.0000000000000000E+00 + -6.8285640218976491E-03 + -5.1788143365812181E-03 + 3.0935973830021088E-03 + 2.6713782654946434E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9632797902510659E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 12 + 1.0000000000000000E+00 + 3.1681023814223024E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9635985013222976E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8520807914854927E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 13 + 0.0000000000000000E+00 + 4.8221274651293680E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.0244031782742211E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.0729354947468347E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 14 + 3.3333333333333331E-01 + 4.8290668593932748E+00 + 0.0000000000000000E+00 + -6.7650803575693497E-03 + -4.2089104451362325E-02 + -6.8916720337566170E-03 + 3.7181893694061183E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9489989913805453E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 15 + 6.6666666666666663E-01 + 4.8294314314459150E+00 + 0.0000000000000000E+00 + -7.3944751530431183E-03 + -3.2421644928410737E-02 + 1.0765795669295058E-02 + -2.6544096302761786E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9415274746108860E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 16 + 1.0000000000000000E+00 + 4.8262796126190555E+00 + 0.0000000000000000E+00 + -7.8004633171833461E-03 + -2.7258482259634710E-02 + 2.1088316361505384E-02 + 2.9110654091098804E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9964032084534669E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 17 + 0.0000000000000000E+00 + -1.2184449929736196E-01 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 6.1518770439155489E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1369666378758905E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 18 + 3.3333333333333331E-01 + -1.1802154562072567E-01 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -9.7349209027668948E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.0699745996983120E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 19 + 6.6666666666666663E-01 + -1.0481886895583184E-01 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 5.8523623090518182E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.8410684170290577E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 20 + 1.0000000000000000E+00 + -1.0239088432753010E-01 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -8.3639885698724825E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.8049456859126411E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 21 + 0.0000000000000000E+00 + 1.4897818810249808E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + -3.0667462946583280E-02 + 0.0000000000000000E+00 + -1.1769322391714741E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.0667462946583280E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 22 + 3.3333333333333331E-01 + 1.4909193313905649E+00 + 3.3333333333333331E-01 + 4.1725855241786991E-03 + -9.0835107730625388E-03 + 1.9549503515676084E-03 + -1.6955643338136941E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -3.0452159918579899E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.3992096735420080E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 23 + 6.6666666666666663E-01 + 1.4966690221671910E+00 + 3.3333333333333331E-01 + 2.0633101822992482E-03 + -1.4137751748166405E-03 + 2.0636837162135587E-03 + 2.9366791293313228E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9385173674619691E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.3861266895978385E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 24 + 1.0000000000000000E+00 + 1.4988450395005346E+00 + 3.3333333333333331E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1058636139990856E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8953277868062257E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 25 + 0.0000000000000000E+00 + 3.1628846306911584E+00 + 3.3333333333333331E-01 + -1.7014851208770412E-02 + -1.1906210553836946E-01 + 7.9606644864071603E-03 + 1.6262194232300975E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9390075431340097E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 26 + 3.3333333333333331E-01 + 3.1629277447095685E+00 + 3.3333333333333331E-01 + -1.4336268573506061E-02 + -4.0705769302104330E-02 + 2.7553010173549000E-03 + 2.3064907623791662E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9390992289017460E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.4672638803768837E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 27 + 6.6666666666666663E-01 + 3.1617940940913711E+00 + 3.3333333333333331E-01 + -9.6915219531433210E-03 + -1.0964927131236889E-02 + -5.8939825290709250E-04 + -2.5839575451203061E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9607148915252596E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.4618302760422002E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 28 + 1.0000000000000000E+00 + 3.1613172488466561E+00 + 3.3333333333333331E-01 + -7.6825381913809181E-03 + -4.6182065075254172E-03 + -1.7225566099951712E-03 + 2.4409635384938806E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9703404651277410E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 29 + 0.0000000000000000E+00 + 4.8290339116931262E+00 + 3.3333333333333331E-01 + 8.3253991492306719E-04 + 3.3838270839705364E-02 + -1.0808250402487557E-02 + 1.1544886263747660E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9496741189858861E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 30 + 3.3333333333333331E-01 + 4.8288761213004410E+00 + 3.3333333333333331E-01 + -2.1753719840945859E-02 + -1.9072353748225548E-02 + 1.9515308283766983E-03 + -2.4999743839090685E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9522490441991799E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 31 + 6.6666666666666663E-01 + 4.8292728514815941E+00 + 3.3333333333333331E-01 + -2.1350092933750821E-02 + -3.0554852642606208E-02 + 1.4957302411159785E-02 + 2.5659611067743957E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9447649965907683E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 32 + 1.0000000000000000E+00 + 4.8294711309097043E+00 + 3.3333333333333331E-01 + -1.9228522691863995E-02 + -2.7994544833924263E-02 + 2.7717226995223523E-02 + -2.5026141996712541E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9408003178641576E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 33 + 0.0000000000000000E+00 + -1.2652896523402191E-01 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.5637462400402113E+01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2148167136466803E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 34 + 3.3333333333333331E-01 + -1.2451973971923520E-01 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2575121838107373E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1800736706602181E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 35 + 6.6666666666666663E-01 + -1.2120359091747654E-01 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -1.1034694777844890E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1232553997564484E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 36 + 1.0000000000000000E+00 + -1.1917819108974539E-01 + 6.6666666666666663E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 8.2312543087046186E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.0881274179973073E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 37 + 0.0000000000000000E+00 + 1.4987288788557895E+00 + 6.6666666666666663E-01 + 4.9222820827564033E-03 + -1.1880339602856676E-02 + 1.1888965365325178E-02 + -2.1793811226376858E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9092820262593778E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 38 + 3.3333333333333331E-01 + 1.4996705529350134E+00 + 6.6666666666666663E-01 + 5.1273006833204302E-03 + -8.2741234540157256E-03 + 8.3912010146753209E-03 + 3.9529178449205236E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8918276164127951E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.4057318455497325E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 39 + 6.6666666666666663E-01 + 1.5012956371050041E+00 + 6.6666666666666663E-01 + 5.1471684388096602E-03 + -5.7605117956098057E-03 + 6.5213629601392530E-03 + -4.3506558618025366E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8613975793904140E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.4024478752123376E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 40 + 1.0000000000000000E+00 + 1.5022239904454884E+00 + 6.6666666666666663E-01 + 6.0110857010849273E-03 + -1.6539852011842561E-03 + 4.9219776207365526E-04 + 4.1132699097983565E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8442451165951958E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 41 + 0.0000000000000000E+00 + 3.1614600372951993E+00 + 6.6666666666666663E-01 + -1.4978869581887927E-02 + -5.1682328262883492E-02 + 3.5634778712651410E-03 + 1.9021214032081346E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9654475868113598E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 42 + 3.3333333333333331E-01 + 3.1613241481774517E+00 + 6.6666666666666663E-01 + -1.1755792043472537E-02 + -3.7310721168000972E-02 + 1.9233512693170504E-03 + -2.9596498111163854E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9680527481257098E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.4580169022777130E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 43 + 6.6666666666666663E-01 + 3.1611347309079543E+00 + 6.6666666666666663E-01 + -1.1359793295785616E-02 + -2.6733356416984922E-02 + 1.3997874519822225E-03 + 3.0202919815401112E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9718496428975175E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 4.4559509131421406E-02 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 44 + 1.0000000000000000E+00 + 3.1610076271959096E+00 + 6.6666666666666663E-01 + -1.1871686387821231E-02 + -1.0744663791631505E-02 + 2.0075364969691493E-03 + -3.0058062821255165E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9742760082544430E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 45 + 0.0000000000000000E+00 + 4.8293633290636429E+00 + 6.6666666666666663E-01 + -3.1652480098090609E-02 + -2.1191253115597955E-02 + -2.6680645866256052E-02 + -2.3158263328316369E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9435249665660631E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 46 + 3.3333333333333331E-01 + 4.8293934292065179E+00 + 6.6666666666666663E-01 + -3.2639464226695086E-02 + -2.2575589291099887E-02 + -3.7706619732109882E-04 + 2.9802429572919262E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9429665481008092E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 47 + 6.6666666666666663E-01 + 4.8294077507791693E+00 + 6.6666666666666663E-01 + -3.3159973725459008E-02 + -2.2112270923598971E-02 + 1.2012773210665368E-02 + -2.9223247833544237E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9426443990728562E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 48 + 1.0000000000000000E+00 + 4.8294307350132266E+00 + 6.6666666666666663E-01 + -3.2000220929998366E-02 + -2.4125861269721525E-02 + 3.0134835084510214E-02 + 2.9497071643259862E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9422252320572849E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 49 + 0.0000000000000000E+00 + -1.2816181289399861E-01 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 7.1727010271689968E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2420341115920277E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 50 + 3.3333333333333331E-01 + -1.2722379303115935E-01 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 6.8958199348724369E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.2259011082326346E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 51 + 6.6666666666666663E-01 + -1.2520255691233267E-01 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -8.6839361313936902E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1909875011397059E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 52 + 1.0000000000000000E+00 + -1.2426452424623044E-01 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 7.7422632618540188E-01 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.1748491066445962E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 53 + 0.0000000000000000E+00 + 1.5013858254794594E+00 + 1.0000000000000000E+00 + 2.7255704835396940E-03 + -7.3368789155174308E-03 + 1.3254521688605100E-02 + 2.5165451527861027E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8626851743396884E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 54 + 3.3333333333333331E-01 + 1.5018596669232180E+00 + 1.0000000000000000E+00 + 8.0625243107357233E-03 + -8.2026872770988649E-03 + 1.0711655409466996E-02 + -4.4710635393793003E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8538805930699792E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 55 + 6.6666666666666663E-01 + 1.5028559706370450E+00 + 1.0000000000000000E+00 + 1.1060284277076469E-02 + -3.8929201127026756E-03 + 7.4291602687767870E-03 + 4.6347709627401201E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8354484176684569E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 56 + 1.0000000000000000E+00 + 1.5033299391708643E+00 + 1.0000000000000000E+00 + 1.3888544426634633E-02 + -4.6256622108301650E-03 + 4.1431311259782259E-04 + -4.5351985717604997E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.8266435006647002E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 57 + 0.0000000000000000E+00 + 3.1611130207436759E+00 + 1.0000000000000000E+00 + -1.3429019115482693E-02 + -3.4619892975406782E-02 + 4.6001481970168083E-03 + -2.5037769700999646E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9718698532583795E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 58 + 3.3333333333333331E-01 + 3.1610753433201140E+00 + 1.0000000000000000E+00 + -1.2808854058041748E-02 + -3.6883874410086830E-02 + 3.1292964162365415E-03 + 3.1183689116508884E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9726252067253930E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 59 + 6.6666666666666663E-01 + 3.1609845454706580E+00 + 1.0000000000000000E+00 + -1.1804414110666911E-02 + -2.0587777892079617E-02 + 3.0821872988130157E-03 + -3.0829052724533121E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9743942606188782E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 60 + 1.0000000000000000E+00 + 3.1609466487204867E+00 + 1.0000000000000000E+00 + -9.5455804544700412E-03 + -2.2000919095654343E-02 + 2.5880626516413029E-03 + 3.1328057136071856E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9751538172340965E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 61 + 0.0000000000000000E+00 + 4.8294115066213372E+00 + 1.0000000000000000E+00 + -4.6317234367897218E-02 + -3.0516494359061074E-02 + -2.6777258528575730E-02 + 2.5205985654855052E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9426154815505406E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 62 + 3.3333333333333331E-01 + 4.8294044686019646E+00 + 1.0000000000000000E+00 + -5.1712261533539007E-02 + -2.2532593169645940E-02 + -4.3420262101215240E-03 + -3.0162066912846250E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9427452272741253E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 63 + 6.6666666666666663E-01 + 4.8293988716911773E+00 + 1.0000000000000000E+00 + -5.0923900296601647E-02 + -2.8523307443872565E-02 + 1.1395100512814924E-02 + 2.9113952916384669E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9428614635810427E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + Node: 64 + 1.0000000000000000E+00 + 4.8293920440746856E+00 + 1.0000000000000000E+00 + -5.2585727628430480E-02 + -1.9395110818354037E-02 + 3.1191221937974436E-02 + -2.9616672390648340E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + -2.9429870810980616E-02 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.2345678806304932E+00 + 1.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 0.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 + 1.0000000000000000E+00 diff --git a/src/fortran/expected_results/results.txt b/src/fortran/expected_results/results.txt deleted file mode 100644 index 84c0069..0000000 --- a/src/fortran/expected_results/results.txt +++ /dev/null @@ -1 +0,0 @@ -working. diff --git a/src/fortran/input/CMHEART.inp b/src/fortran/input/CMHEART.inp deleted file mode 100644 index 5e4cd14..0000000 --- a/src/fortran/input/CMHEART.inp +++ /dev/null @@ -1,3 +0,0 @@ -'../../../TOOLS/NavierStokesMeshes/HEX-M2-V2-P1_FE.aux' -'../../../TOOLS/NavierStokesMeshes/HEX-M2-V2-P1_FE.C' -'../../../TOOLS/NavierStokesMeshes/HEX-M2-V2-P1_FE.M' diff --git a/src/fortran/stokes_ale.F90 b/src/fortran/stokes_ale.F90 index c59a4e0..29d931b 100644 --- a/src/fortran/stokes_ale.F90 +++ b/src/fortran/stokes_ale.F90 @@ -1,36 +1,24 @@ -PROGRAM STOKESALEEXAMPLE - - ! - !================================================================================================================================ - ! - - !PROGRAM LIBRARIES +PROGRAM stokes_ale USE OpenCMISS USE OpenCMISS_Iron #ifndef NOMPIMOD USE MPI #endif - - ! - !================================================================================================================================ - ! - - !PROGRAM VARIABLES AND TYPES - IMPLICIT NONE - #ifdef NOMPIMOD #include "mpif.h" #endif + ! + !================================================================================================================================ + ! + !Test program parameters - REAL(CMISSRP), PARAMETER :: HEIGHT=1.0_CMISSRP + REAL(CMISSRP), PARAMETER :: HEIGHT=3.0_CMISSRP REAL(CMISSRP), PARAMETER :: WIDTH=1.0_CMISSRP REAL(CMISSRP), PARAMETER :: LENGTH=1.0_CMISSRP - !Test program parameters - INTEGER(CMISSIntg), PARAMETER :: CoordinateSystemUserNumber=1 INTEGER(CMISSIntg), PARAMETER :: RegionUserNumber=2 INTEGER(CMISSIntg), PARAMETER :: MeshUserNumber=3 @@ -48,6 +36,7 @@ PROGRAM STOKESALEEXAMPLE INTEGER(CMISSIntg), PARAMETER :: EquationsSetFieldUserNumberMovingMesh=23 INTEGER(CMISSIntg), PARAMETER :: ProblemUserNumber=14 INTEGER(CMISSIntg), PARAMETER :: GeneratedMeshUserNumber=15 + INTEGER(CMISSIntg), PARAMETER :: AnalyticFieldUserNumber=16 INTEGER(CMISSIntg), PARAMETER :: DomainUserNumber=1 INTEGER(CMISSIntg), PARAMETER :: SolverMovingMeshUserNumber=1 @@ -137,34 +126,24 @@ PROGRAM STOKESALEEXAMPLE LOGICAL :: FIXED_WALL_NODES_MOVING_MESH_FLAG LOGICAL :: MOVED_WALL_NODES_MOVING_MESH_FLAG - !CMISS variables - !Regions TYPE(cmfe_RegionType) :: Region TYPE(cmfe_RegionType) :: WorldRegion - !Coordinate systems TYPE(cmfe_CoordinateSystemType) :: CoordinateSystem TYPE(cmfe_CoordinateSystemType) :: WorldCoordinateSystem - !Basis TYPE(cmfe_BasisType) :: BasisGeometry TYPE(cmfe_BasisType) :: BasisVelocity TYPE(cmfe_BasisType) :: BasisPressure - !Nodes TYPE(cmfe_NodesType) :: Nodes - !Elements TYPE(cmfe_MeshElementsType) :: MeshElementsSpace TYPE(cmfe_MeshElementsType) :: MeshElementsVelocity TYPE(cmfe_MeshElementsType) :: MeshElementsPressure - !Meshes TYPE(cmfe_MeshType) :: Mesh TYPE(cmfe_GeneratedMeshType) :: GeneratedMesh - !Decompositions TYPE(cmfe_DecompositionType) :: Decomposition - !Fields TYPE(cmfe_FieldsType) :: Fields - !Field types - TYPE(cmfe_FieldType) :: GeometricField + TYPE(cmfe_FieldType) :: GeometricField,AnalyticField TYPE(cmfe_FieldType) :: DependentFieldStokes TYPE(cmfe_FieldType) :: DependentFieldMovingMesh TYPE(cmfe_FieldType) :: MaterialsFieldStokes @@ -173,24 +152,17 @@ PROGRAM STOKESALEEXAMPLE TYPE(cmfe_FieldType) :: IndependentFieldMovingMesh TYPE(cmfe_FieldType) :: EquationsSetFieldStokes TYPE(cmfe_FieldType) :: EquationsSetFieldMovingMesh - !Boundary conditions TYPE(cmfe_BoundaryConditionsType) :: BoundaryConditionsStokes TYPE(cmfe_BoundaryConditionsType) :: BoundaryConditionsMovingMesh - !Equations sets TYPE(cmfe_EquationsSetType) :: EquationsSetStokes TYPE(cmfe_EquationsSetType) :: EquationsSetMovingMesh - !Equations TYPE(cmfe_EquationsType) :: EquationsStokes TYPE(cmfe_EquationsType) :: EquationsMovingMesh - !Problems TYPE(cmfe_ProblemType) :: Problem - !Control loops TYPE(cmfe_ControlLoopType) :: ControlLoop - !Solvers TYPE(cmfe_SolverType) :: DynamicSolverStokes TYPE(cmfe_SolverType) :: LinearSolverStokes TYPE(cmfe_SolverType) :: LinearSolverMovingMesh - !Solver equations TYPE(cmfe_SolverEquationsType) :: SolverEquationsStokes TYPE(cmfe_SolverEquationsType) :: SolverEquationsMovingMesh @@ -224,13 +196,13 @@ PROGRAM STOKESALEEXAMPLE ! !PROBLEM CONTROL PANEL - NUMBER_GLOBAL_X_ELEMENTS=1 + NUMBER_GLOBAL_X_ELEMENTS=3 NUMBER_GLOBAL_Y_ELEMENTS=3 - NUMBER_GLOBAL_Z_ELEMENTS=1 + NUMBER_GLOBAL_Z_ELEMENTS=3 MESH_COMPONENT_NUMBER_SPACE=1 MESH_COMPONENT_NUMBER_VELOCITY=1 MESH_COMPONENT_NUMBER_PRESSURE=1 - NUMBER_OF_DIMENSIONS=3 + NUMBER_OF_DIMENSIONS=2 BASIS_TYPE=CMFE_BASIS_LINEAR_LAGRANGE_INTERPOLATION BASIS_XI_INTERPOLATION_SPACE=CMFE_BASIS_LINEAR_LAGRANGE_INTERPOLATION BASIS_XI_INTERPOLATION_VELOCITY=CMFE_BASIS_LINEAR_LAGRANGE_INTERPOLATION @@ -245,41 +217,41 @@ PROGRAM STOKESALEEXAMPLE INITIAL_FIELD_MOVING_MESH(3)=0.0_CMISSRP !Set boundary conditions FIXED_WALL_NODES_STOKES_FLAG=.TRUE. - MOVED_WALL_NODES_STOKES_FLAG=.TRUE. - INLET_WALL_NODES_STOKES_FLAG=.FALSE. - FIXED_WALL_NODES_MOVING_MESH_FLAG=.TRUE. - MOVED_WALL_NODES_MOVING_MESH_FLAG=.TRUE. + MOVED_WALL_NODES_STOKES_FLAG=.FALSE. + INLET_WALL_NODES_STOKES_FLAG=.TRUE. + FIXED_WALL_NODES_MOVING_MESH_FLAG=.FALSE. + MOVED_WALL_NODES_MOVING_MESH_FLAG=.FALSE. IF(FIXED_WALL_NODES_STOKES_FLAG) THEN - NUMBER_OF_FIXED_WALL_NODES_STOKES=1 - ALLOCATE(FIXED_WALL_NODES_STOKES(NUMBER_OF_FIXED_WALL_NODES_STOKES)) - FIXED_WALL_NODES_STOKES=[1] + NUMBER_OF_FIXED_WALL_NODES_STOKES=8 + ALLOCATE(FIXED_WALL_NODES_STOKES(NUMBER_OF_FIXED_WALL_NODES_STOKES)) + FIXED_WALL_NODES_STOKES=[1,4,5,8,9,12,13,16] ENDIF IF(MOVED_WALL_NODES_STOKES_FLAG) THEN - NUMBER_OF_MOVED_WALL_NODES_STOKES=1 - ALLOCATE(MOVED_WALL_NODES_STOKES(NUMBER_OF_MOVED_WALL_NODES_STOKES)) - MOVED_WALL_NODES_STOKES=[2] + NUMBER_OF_MOVED_WALL_NODES_STOKES=0 + ALLOCATE(MOVED_WALL_NODES_STOKES(NUMBER_OF_MOVED_WALL_NODES_STOKES)) + MOVED_WALL_NODES_STOKES=[7] ENDIF IF(INLET_WALL_NODES_STOKES_FLAG) THEN - NUMBER_OF_INLET_WALL_NODES_STOKES=1 - ALLOCATE(INLET_WALL_NODES_STOKES(NUMBER_OF_INLET_WALL_NODES_STOKES)) - INLET_WALL_NODES_STOKES=[3] - !Set initial boundary conditions - BOUNDARY_CONDITIONS_STOKES(1)=0.0_CMISSRP - BOUNDARY_CONDITIONS_STOKES(2)=0.0_CMISSRP - BOUNDARY_CONDITIONS_STOKES(3)=0.0_CMISSRP + NUMBER_OF_INLET_WALL_NODES_STOKES=2 + ALLOCATE(INLET_WALL_NODES_STOKES(NUMBER_OF_INLET_WALL_NODES_STOKES)) + INLET_WALL_NODES_STOKES=[2,3] + !Set initial boundary conditions + BOUNDARY_CONDITIONS_STOKES(1)=0.0_CMISSRP + BOUNDARY_CONDITIONS_STOKES(2)=1.0_CMISSRP + BOUNDARY_CONDITIONS_STOKES(3)=0.0_CMISSRP ENDIF IF(FIXED_WALL_NODES_MOVING_MESH_FLAG) THEN - NUMBER_OF_FIXED_WALL_NODES_MOVING_MESH=1 - ALLOCATE(FIXED_WALL_NODES_MOVING_MESH(NUMBER_OF_FIXED_WALL_NODES_MOVING_MESH)) - FIXED_WALL_NODES_MOVING_MESH=[4] + NUMBER_OF_FIXED_WALL_NODES_MOVING_MESH=0 + ALLOCATE(FIXED_WALL_NODES_MOVING_MESH(NUMBER_OF_FIXED_WALL_NODES_MOVING_MESH)) + FIXED_WALL_NODES_MOVING_MESH=[4] ENDIF IF(MOVED_WALL_NODES_MOVING_MESH_FLAG) THEN - NUMBER_OF_MOVED_WALL_NODES_MOVING_MESH=1 - ALLOCATE(MOVED_WALL_NODES_MOVING_MESH(NUMBER_OF_MOVED_WALL_NODES_MOVING_MESH)) - MOVED_WALL_NODES_MOVING_MESH=[5] - BOUNDARY_CONDITIONS_MOVING_MESH(1)=0.0_CMISSRP - BOUNDARY_CONDITIONS_MOVING_MESH(2)=0.0_CMISSRP - BOUNDARY_CONDITIONS_MOVING_MESH(3)=0.0_CMISSRP + NUMBER_OF_MOVED_WALL_NODES_MOVING_MESH=0 + ALLOCATE(MOVED_WALL_NODES_MOVING_MESH(NUMBER_OF_MOVED_WALL_NODES_MOVING_MESH)) + MOVED_WALL_NODES_MOVING_MESH=[5] + BOUNDARY_CONDITIONS_MOVING_MESH(1)=0.0_CMISSRP + BOUNDARY_CONDITIONS_MOVING_MESH(2)=0.0_CMISSRP + BOUNDARY_CONDITIONS_MOVING_MESH(3)=0.0_CMISSRP ENDIF !Set material parameters MU_PARAM_STOKES=1.0_CMISSRP @@ -339,6 +311,7 @@ PROGRAM STOKESALEEXAMPLE !Start the creation of a new region CALL cmfe_Region_Initialise(Region,Err) CALL cmfe_Region_CreateStart(RegionUserNumber,WorldRegion,Region,Err) + CALL cmfe_Region_LabelSet(Region,"StokesRegion",Err) !Set the regions coordinate system as defined above CALL cmfe_Region_CoordinateSystemSet(Region,CoordinateSystem,Err) !Finish the creation of the region @@ -360,68 +333,71 @@ PROGRAM STOKESALEEXAMPLE CALL cmfe_Basis_NumberOfXiSet(BasisGeometry,NUMBER_OF_DIMENSIONS,Err) !Set the basis xi interpolation and number of Gauss points IF(NUMBER_OF_DIMENSIONS==2) THEN - CALL cmfe_Basis_InterpolationXiSet(BasisGeometry,[BASIS_XI_INTERPOLATION_SPACE,BASIS_XI_INTERPOLATION_SPACE],Err) - CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisGeometry,[BASIS_XI_GAUSS_SPACE,BASIS_XI_GAUSS_SPACE],Err) - ELSE IF(NUMBER_OF_DIMENSIONS==3) THEN - CALL cmfe_Basis_InterpolationXiSet(BasisGeometry,[BASIS_XI_INTERPOLATION_SPACE,BASIS_XI_INTERPOLATION_SPACE, & - & BASIS_XI_INTERPOLATION_SPACE],Err) - CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisGeometry,[BASIS_XI_GAUSS_SPACE,BASIS_XI_GAUSS_SPACE,BASIS_XI_GAUSS_SPACE],Err) + CALL cmfe_Basis_InterpolationXiSet(BasisGeometry,[BASIS_XI_INTERPOLATION_SPACE,BASIS_XI_INTERPOLATION_SPACE],Err) + CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisGeometry,[BASIS_XI_GAUSS_SPACE,BASIS_XI_GAUSS_SPACE],Err) + ELSE + CALL cmfe_Basis_InterpolationXiSet(BasisGeometry,[BASIS_XI_INTERPOLATION_SPACE,BASIS_XI_INTERPOLATION_SPACE, & + & BASIS_XI_INTERPOLATION_SPACE],Err) + CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisGeometry,[BASIS_XI_GAUSS_SPACE,BASIS_XI_GAUSS_SPACE,BASIS_XI_GAUSS_SPACE] & + & ,Err) ENDIF !Finish the creation of the basis CALL cmfe_Basis_CreateFinish(BasisGeometry,Err) + !Start the creation of another basis IF(BASIS_XI_INTERPOLATION_VELOCITY==BASIS_XI_INTERPOLATION_SPACE) THEN - BasisVelocity=BasisGeometry + BasisVelocity=BasisGeometry ELSE - MESH_NUMBER_OF_COMPONENTS=MESH_NUMBER_OF_COMPONENTS+1 - !Initialise a new velocity basis - CALL cmfe_Basis_Initialise(BasisVelocity,Err) - !Start the creation of a basis - CALL cmfe_Basis_CreateStart(BASIS_NUMBER_VELOCITY,BasisVelocity,Err) - !Set the basis type (Lagrange/Simplex) - CALL cmfe_Basis_TypeSet(BasisVelocity,BASIS_TYPE,Err) - !Set the basis xi number - CALL cmfe_Basis_NumberOfXiSet(BasisVelocity,NUMBER_OF_DIMENSIONS,Err) - !Set the basis xi interpolation and number of Gauss points - IF(NUMBER_OF_DIMENSIONS==2) THEN - CALL cmfe_Basis_InterpolationXiSet(BasisVelocity,[BASIS_XI_INTERPOLATION_VELOCITY,BASIS_XI_INTERPOLATION_VELOCITY],Err) - CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisVelocity,[BASIS_XI_GAUSS_VELOCITY,BASIS_XI_GAUSS_VELOCITY],Err) - ELSE IF(NUMBER_OF_DIMENSIONS==3) THEN - CALL cmfe_Basis_InterpolationXiSet(BasisVelocity,[BASIS_XI_INTERPOLATION_VELOCITY,BASIS_XI_INTERPOLATION_VELOCITY, & - & BASIS_XI_INTERPOLATION_VELOCITY],Err) - CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisVelocity,[BASIS_XI_GAUSS_VELOCITY,BASIS_XI_GAUSS_VELOCITY, & - & BASIS_XI_GAUSS_VELOCITY],Err) - ENDIF - !Finish the creation of the basis - CALL cmfe_Basis_CreateFinish(BasisVelocity,Err) + MESH_NUMBER_OF_COMPONENTS=MESH_NUMBER_OF_COMPONENTS+1 + !Initialise a new velocity basis + CALL cmfe_Basis_Initialise(BasisVelocity,Err) + !Start the creation of a basis + CALL cmfe_Basis_CreateStart(BASIS_NUMBER_VELOCITY,BasisVelocity,Err) + !Set the basis type (Lagrange/Simplex) + CALL cmfe_Basis_TypeSet(BasisVelocity,BASIS_TYPE,Err) + !Set the basis xi number + CALL cmfe_Basis_NumberOfXiSet(BasisVelocity,NUMBER_OF_DIMENSIONS,Err) + !Set the basis xi interpolation and number of Gauss points + IF(NUMBER_OF_DIMENSIONS==2) THEN + CALL cmfe_Basis_InterpolationXiSet(BasisVelocity,[BASIS_XI_INTERPOLATION_VELOCITY,BASIS_XI_INTERPOLATION_VELOCITY],Err) + CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisVelocity,[BASIS_XI_GAUSS_VELOCITY,BASIS_XI_GAUSS_VELOCITY],Err) + ELSE + CALL cmfe_Basis_InterpolationXiSet(BasisVelocity,[BASIS_XI_INTERPOLATION_VELOCITY,BASIS_XI_INTERPOLATION_VELOCITY, & + & BASIS_XI_INTERPOLATION_VELOCITY],Err) + CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisVelocity,[BASIS_XI_GAUSS_VELOCITY,BASIS_XI_GAUSS_VELOCITY, & + & BASIS_XI_GAUSS_VELOCITY],Err) + ENDIF + !Finish the creation of the basis + CALL cmfe_Basis_CreateFinish(BasisVelocity,Err) ENDIF + !Start the creation of another basis IF(BASIS_XI_INTERPOLATION_PRESSURE==BASIS_XI_INTERPOLATION_SPACE) THEN - BasisPressure=BasisGeometry + BasisPressure=BasisGeometry ELSE IF(BASIS_XI_INTERPOLATION_PRESSURE==BASIS_XI_INTERPOLATION_VELOCITY) THEN - BasisPressure=BasisVelocity + BasisPressure=BasisVelocity ELSE - MESH_NUMBER_OF_COMPONENTS=MESH_NUMBER_OF_COMPONENTS+1 - !Initialise a new pressure basis - CALL cmfe_Basis_Initialise(BasisPressure,Err) - !Start the creation of a basis - CALL cmfe_Basis_CreateStart(BASIS_NUMBER_PRESSURE,BasisPressure,Err) - !Set the basis type (Lagrange/Simplex) - CALL cmfe_Basis_TypeSet(BasisPressure,BASIS_TYPE,Err) - !Set the basis xi number - CALL cmfe_Basis_NumberOfXiSet(BasisPressure,NUMBER_OF_DIMENSIONS,Err) - !Set the basis xi interpolation and number of Gauss points - IF(NUMBER_OF_DIMENSIONS==2) THEN - CALL cmfe_Basis_InterpolationXiSet(BasisPressure,[BASIS_XI_INTERPOLATION_PRESSURE,BASIS_XI_INTERPOLATION_PRESSURE],Err) - CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisPressure,[BASIS_XI_GAUSS_PRESSURE,BASIS_XI_GAUSS_PRESSURE],Err) - ELSE IF(NUMBER_OF_DIMENSIONS==3) THEN - CALL cmfe_Basis_InterpolationXiSet(BasisPressure,[BASIS_XI_INTERPOLATION_PRESSURE,BASIS_XI_INTERPOLATION_PRESSURE, & - & BASIS_XI_INTERPOLATION_PRESSURE],Err) - CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisPressure,[BASIS_XI_GAUSS_PRESSURE,BASIS_XI_GAUSS_PRESSURE, & - & BASIS_XI_GAUSS_PRESSURE],Err) - ENDIF - !Finish the creation of the basis - CALL cmfe_Basis_CreateFinish(BasisPressure,Err) + MESH_NUMBER_OF_COMPONENTS=MESH_NUMBER_OF_COMPONENTS+1 + !Initialise a new pressure basis + CALL cmfe_Basis_Initialise(BasisPressure,Err) + !Start the creation of a basis + CALL cmfe_Basis_CreateStart(BASIS_NUMBER_PRESSURE,BasisPressure,Err) + !Set the basis type (Lagrange/Simplex) + CALL cmfe_Basis_TypeSet(BasisPressure,BASIS_TYPE,Err) + !Set the basis xi number + CALL cmfe_Basis_NumberOfXiSet(BasisPressure,NUMBER_OF_DIMENSIONS,Err) + !Set the basis xi interpolation and number of Gauss points + IF(NUMBER_OF_DIMENSIONS==2) THEN + CALL cmfe_Basis_InterpolationXiSet(BasisPressure,[BASIS_XI_INTERPOLATION_PRESSURE,BASIS_XI_INTERPOLATION_PRESSURE],Err) + CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisPressure,[BASIS_XI_GAUSS_PRESSURE,BASIS_XI_GAUSS_PRESSURE],Err) + ELSE + CALL cmfe_Basis_InterpolationXiSet(BasisPressure,[BASIS_XI_INTERPOLATION_PRESSURE,BASIS_XI_INTERPOLATION_PRESSURE, & + & BASIS_XI_INTERPOLATION_PRESSURE],Err) + CALL cmfe_Basis_QuadratureNumberOfGaussXiSet(BasisPressure,[BASIS_XI_GAUSS_PRESSURE,BASIS_XI_GAUSS_PRESSURE, & + & BASIS_XI_GAUSS_PRESSURE],Err) + ENDIF + !Finish the creation of the basis + CALL cmfe_Basis_CreateFinish(BasisPressure,Err) ENDIF ! @@ -438,9 +414,14 @@ PROGRAM STOKESALEEXAMPLE !Set the default basis CALL cmfe_GeneratedMesh_BasisSet(GeneratedMesh,BasisGeometry,Err) !Define the mesh on the region - CALL cmfe_GeneratedMesh_ExtentSet(GeneratedMesh,[WIDTH,HEIGHT,LENGTH],Err) - CALL cmfe_GeneratedMesh_NumberOfElementsSet(GeneratedMesh,[NUMBER_GLOBAL_X_ELEMENTS,NUMBER_GLOBAL_Y_ELEMENTS, & - & NUMBER_GLOBAL_Z_ELEMENTS],Err) + IF(NUMBER_OF_DIMENSIONS==2) THEN + CALL cmfe_GeneratedMesh_ExtentSet(GeneratedMesh,[WIDTH,HEIGHT],Err) + CALL cmfe_GeneratedMesh_NumberOfElementsSet(GeneratedMesh,[NUMBER_GLOBAL_X_ELEMENTS,NUMBER_GLOBAL_Y_ELEMENTS],Err) + ELSE + CALL cmfe_GeneratedMesh_ExtentSet(GeneratedMesh,[WIDTH,HEIGHT,LENGTH],Err) + CALL cmfe_GeneratedMesh_NumberOfElementsSet(GeneratedMesh,[NUMBER_GLOBAL_X_ELEMENTS,NUMBER_GLOBAL_Y_ELEMENTS, & + & NUMBER_GLOBAL_Z_ELEMENTS],Err) + ENDIF !Finish the creation of a generated mesh in the region CALL cmfe_Mesh_Initialise(Mesh,Err) CALL cmfe_GeneratedMesh_CreateFinish(GeneratedMesh,MeshUserNumber,Mesh,Err) @@ -449,7 +430,7 @@ PROGRAM STOKESALEEXAMPLE !================================================================================================================================ ! - !GEOMETRIC FIELD + !MESH DECOMPOSITION !Create a decomposition CALL cmfe_Decomposition_Initialise(Decomposition,Err) @@ -460,6 +441,12 @@ PROGRAM STOKESALEEXAMPLE !Finish the decomposition CALL cmfe_Decomposition_CreateFinish(Decomposition,Err) + ! + !================================================================================================================================ + ! + + !GEOMETRIC FIELD + !Start to create a default (geometric) field on the region CALL cmfe_Field_Initialise(GeometricField,Err) CALL cmfe_Field_CreateStart(GeometricFieldUserNumber,Region,GeometricField,Err) @@ -470,18 +457,14 @@ PROGRAM STOKESALEEXAMPLE !Set the scaling to use CALL cmfe_Field_ScalingTypeSet(GeometricField,CMFE_FIELD_NO_SCALING,Err) !Set the mesh component to be used by the field components. - !DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - ! CALL cmfe_Field_ComponentMeshComponentSet(GeometricField,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & - ! & MESH_COMPONENT_NUMBER_SPACE,Err) - !ENDDO - CALL cmfe_Field_ComponentMeshComponentSet(GeometricField,CMFE_FIELD_U_VARIABLE_TYPE,1,1,Err) - CALL cmfe_Field_ComponentMeshComponentSet(GeometricField,CMFE_FIELD_U_VARIABLE_TYPE,2,1,Err) - CALL cmfe_Field_ComponentMeshComponentSet(GeometricField,CMFE_FIELD_U_VARIABLE_TYPE,3,1,Err) + DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS + CALL cmfe_Field_ComponentMeshComponentSet(GeometricField,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & + & MESH_COMPONENT_NUMBER_SPACE,Err) + ENDDO !Finish creating the field CALL cmfe_Field_CreateFinish(GeometricField,Err) - - CALL cmfe_Field_ParameterSetUpdateStart(GeometricField,CMFE_FIELD_U_VARIABLE_TYPE,CMFE_FIELD_VALUES_SET_TYPE,Err) - CALL cmfe_Field_ParameterSetUpdateFinish(GeometricField,CMFE_FIELD_U_VARIABLE_TYPE,CMFE_FIELD_VALUES_SET_TYPE,Err) + !Update the geometric field parameters + CALL cmfe_GeneratedMesh_GeometricParametersCalculate(GeneratedMesh,GeometricField,Err) ! !================================================================================================================================ @@ -493,8 +476,8 @@ PROGRAM STOKESALEEXAMPLE CALL cmfe_Field_Initialise(EquationsSetFieldStokes,Err) CALL cmfe_EquationsSet_Initialise(EquationsSetStokes,Err) CALL cmfe_EquationsSet_CreateStart(EquationsSetUserNumberStokes,Region,GeometricField, & - & [CMFE_EQUATIONS_SET_FLUID_MECHANICS_CLASS,CMFE_EQUATIONS_SET_STOKES_EQUATION_TYPE,CMFE_EQUATIONS_SET_ALE_STOKES_SUBTYPE], & - & EquationsSetFieldUserNumberStokes,EquationsSetFieldStokes,EquationsSetStokes,Err) + & [CMFE_EQUATIONS_SET_FLUID_MECHANICS_CLASS,CMFE_EQUATIONS_SET_STOKES_EQUATION_TYPE,CMFE_EQUATIONS_SET_ALE_STOKES_SUBTYPE], & + & EquationsSetFieldUserNumberStokes,EquationsSetFieldStokes,EquationsSetStokes,Err) !Set the equations set to be a ALE Stokes problem !Finish creating the equations set CALL cmfe_EquationsSet_CreateFinish(EquationsSetStokes,Err) @@ -503,9 +486,9 @@ PROGRAM STOKESALEEXAMPLE CALL cmfe_Field_Initialise(EquationsSetFieldMovingMesh,Err) CALL cmfe_EquationsSet_Initialise(EquationsSetMovingMesh,Err) CALL cmfe_EquationsSet_CreateStart(EquationsSetUserNumberMovingMesh,Region,GeometricField, & - & [CMFE_EQUATIONS_SET_CLASSICAL_FIELD_CLASS,CMFE_EQUATIONS_SET_LAPLACE_EQUATION_TYPE, & - & CMFE_EQUATIONS_SET_MOVING_MESH_LAPLACE_SUBTYPE],EquationsSetFieldUserNumberMovingMesh,EquationsSetFieldMovingMesh, & - & EquationsSetMovingMesh,Err) + & [CMFE_EQUATIONS_SET_CLASSICAL_FIELD_CLASS,CMFE_EQUATIONS_SET_LAPLACE_EQUATION_TYPE, & + & CMFE_EQUATIONS_SET_MOVING_MESH_LAPLACE_SUBTYPE],EquationsSetFieldUserNumberMovingMesh,EquationsSetFieldMovingMesh, & + & EquationsSetMovingMesh,Err) !Set the equations set to be a moving mesh problem !Finish creating the equations set CALL cmfe_EquationsSet_CreateFinish(EquationsSetMovingMesh,Err) @@ -518,47 +501,47 @@ PROGRAM STOKESALEEXAMPLE !Create the equations set dependent field variables for ALE Stokes CALL cmfe_Field_Initialise(DependentFieldStokes,Err) - CALL cmfe_EquationsSet_DependentCreateStart(EquationsSetStokes,DependentFieldUserNumberStokes, & - & DependentFieldStokes,Err) + CALL cmfe_EquationsSet_DependentCreateStart(EquationsSetStokes,DependentFieldUserNumberStokes,DependentFieldStokes,Err) + CALL cmfe_Field_VariableLabelSet(DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,"U",Err) !Set the mesh component to be used by the field components. DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & - & MESH_COMPONENT_NUMBER_VELOCITY,Err) - CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldStokes,CMFE_FIELD_DELUDELN_VARIABLE_TYPE,COMPONENT_NUMBER, & - & MESH_COMPONENT_NUMBER_VELOCITY,Err) + CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & + & MESH_COMPONENT_NUMBER_VELOCITY,Err) + CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldStokes,CMFE_FIELD_DELUDELN_VARIABLE_TYPE,COMPONENT_NUMBER, & + & MESH_COMPONENT_NUMBER_VELOCITY,Err) ENDDO COMPONENT_NUMBER=NUMBER_OF_DIMENSIONS+1 - CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & - & MESH_COMPONENT_NUMBER_PRESSURE,Err) - CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldStokes,CMFE_FIELD_DELUDELN_VARIABLE_TYPE,COMPONENT_NUMBER, & - & MESH_COMPONENT_NUMBER_PRESSURE,Err) + CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & + & MESH_COMPONENT_NUMBER_PRESSURE,Err) + CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldStokes,CMFE_FIELD_DELUDELN_VARIABLE_TYPE,COMPONENT_NUMBER, & + & MESH_COMPONENT_NUMBER_PRESSURE,Err) !Finish the equations set dependent field variables CALL cmfe_EquationsSet_DependentCreateFinish(EquationsSetStokes,Err) !Initialise dependent field DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - CALL cmfe_Field_ComponentValuesInitialise(DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,CMFE_FIELD_VALUES_SET_TYPE, & - & COMPONENT_NUMBER,INITIAL_FIELD_STOKES(COMPONENT_NUMBER),Err) + CALL cmfe_Field_ComponentValuesInitialise(DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,CMFE_FIELD_VALUES_SET_TYPE, & + & COMPONENT_NUMBER,INITIAL_FIELD_STOKES(COMPONENT_NUMBER),Err) ENDDO !Create the equations set dependent field variables for moving mesh CALL cmfe_Field_Initialise(DependentFieldMovingMesh,Err) CALL cmfe_EquationsSet_DependentCreateStart(EquationsSetMovingMesh,DependentFieldUserNumberMovingMesh, & - & DependentFieldMovingMesh,Err) + & DependentFieldMovingMesh,Err) !Set the mesh component to be used by the field components. DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & - & MESH_COMPONENT_NUMBER_SPACE,Err) - CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldMovingMesh,CMFE_FIELD_DELUDELN_VARIABLE_TYPE,COMPONENT_NUMBER, & - & MESH_COMPONENT_NUMBER_SPACE,Err) + CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & + & MESH_COMPONENT_NUMBER_SPACE,Err) + CALL cmfe_Field_ComponentMeshComponentSet(DependentFieldMovingMesh,CMFE_FIELD_DELUDELN_VARIABLE_TYPE,COMPONENT_NUMBER, & + & MESH_COMPONENT_NUMBER_SPACE,Err) ENDDO !Finish the equations set dependent field variables CALL cmfe_EquationsSet_DependentCreateFinish(EquationsSetMovingMesh,Err) !Initialise dependent field DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - CALL cmfe_Field_ComponentValuesInitialise(DependentFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE,CMFE_FIELD_VALUES_SET_TYPE, & - & COMPONENT_NUMBER,INITIAL_FIELD_MOVING_MESH(COMPONENT_NUMBER),Err) + CALL cmfe_Field_ComponentValuesInitialise(DependentFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE,CMFE_FIELD_VALUES_SET_TYPE, & + & COMPONENT_NUMBER,INITIAL_FIELD_MOVING_MESH(COMPONENT_NUMBER),Err) ENDDO ! @@ -569,22 +552,24 @@ PROGRAM STOKESALEEXAMPLE !Create the equations set materials field variables for ALE Stokes CALL cmfe_Field_Initialise(MaterialsFieldStokes,Err) - CALL cmfe_EquationsSet_MaterialsCreateStart(EquationsSetStokes,MaterialsFieldUserNumberStokes, & - & MaterialsFieldStokes,Err) + CALL cmfe_EquationsSet_MaterialsCreateStart(EquationsSetStokes,MaterialsFieldUserNumberStokes,MaterialsFieldStokes,Err) + CALL cmfe_Field_VariableLabelSet(MaterialsFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,"MaterialsALE",Err) !Finish the equations set materials field variables CALL cmfe_EquationsSet_MaterialsCreateFinish(EquationsSetStokes,Err) CALL cmfe_Field_ComponentValuesInitialise(MaterialsFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,CMFE_FIELD_VALUES_SET_TYPE, & - & MaterialsFieldUserNumberStokesMu,MU_PARAM_STOKES,Err) + & MaterialsFieldUserNumberStokesMu,MU_PARAM_STOKES,Err) CALL cmfe_Field_ComponentValuesInitialise(MaterialsFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,CMFE_FIELD_VALUES_SET_TYPE, & - & MaterialsFieldUserNumberStokesRho,RHO_PARAM_STOKES,Err) + & MaterialsFieldUserNumberStokesRho,RHO_PARAM_STOKES,Err) + !Create the equations set materials field variables for moving mesh CALL cmfe_Field_Initialise(MaterialsFieldMovingMesh,Err) CALL cmfe_EquationsSet_MaterialsCreateStart(EquationsSetMovingMesh,MaterialsFieldUserNumberMovingMesh, & - & MaterialsFieldMovingMesh,Err) + & MaterialsFieldMovingMesh,Err) + CALL cmfe_Field_VariableLabelSet(MaterialsFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE,"MaterialsMovingMesh",Err) !Finish the equations set materials field variables CALL cmfe_EquationsSet_MaterialsCreateFinish(EquationsSetMovingMesh,Err) CALL cmfe_Field_ComponentValuesInitialise(MaterialsFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE,CMFE_FIELD_VALUES_SET_TYPE, & - & MaterialsFieldUserNumberMovingMeshK,K_PARAM_MOVING_MESH,Err) + & MaterialsFieldUserNumberMovingMeshK,K_PARAM_MOVING_MESH,Err) ! !================================================================================================================================ @@ -594,23 +579,25 @@ PROGRAM STOKESALEEXAMPLE !Create the equations set independent field variables for ALE Stokes CALL cmfe_Field_Initialise(IndependentFieldStokes,Err) - CALL cmfe_EquationsSet_IndependentCreateStart(EquationsSetStokes,IndependentFieldUserNumberStokes, & - & IndependentFieldStokes,Err) + CALL cmfe_EquationsSet_IndependentCreateStart(EquationsSetStokes,IndependentFieldUserNumberStokes,IndependentFieldStokes,Err) + CALL cmfe_Field_VariableLabelSet(IndependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,"ALE",Err) !Set the mesh component to be used by the field components. DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - CALL cmfe_Field_ComponentMeshComponentSet(InDependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & - & MESH_COMPONENT_NUMBER_SPACE,Err) + CALL cmfe_Field_ComponentMeshComponentSet(InDependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & + & MESH_COMPONENT_NUMBER_SPACE,Err) ENDDO !Finish the equations set independent field variables CALL cmfe_EquationsSet_IndependentCreateFinish(EquationsSetStokes,Err) + !Create the equations set independent field variables for moving mesh CALL cmfe_Field_Initialise(IndependentFieldMovingMesh,Err) CALL cmfe_EquationsSet_IndependentCreateStart(EquationsSetMovingMesh,IndependentFieldUserNumberMovingMesh, & - & IndependentFieldMovingMesh,Err) + & IndependentFieldMovingMesh,Err) + CALL cmfe_Field_VariableLabelSet(IndependentFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE,"MovingMesh",Err) !Set the mesh component to be used by the field components. DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - CALL cmfe_Field_ComponentMeshComponentSet(InDependentFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & - & MESH_COMPONENT_NUMBER_SPACE,Err) + CALL cmfe_Field_ComponentMeshComponentSet(IndependentFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE,COMPONENT_NUMBER, & + & MESH_COMPONENT_NUMBER_SPACE,Err) ENDDO !Finish the equations set independent field variables CALL cmfe_EquationsSet_IndependentCreateFinish(EquationsSetMovingMesh,Err) @@ -619,6 +606,19 @@ PROGRAM STOKESALEEXAMPLE !================================================================================================================================ ! + !ANALYTIC FIELD + + !Create the equations set analytic field variables + !CALL cmfe_Field_Initialise(AnalyticField,Err) + !CALL cmfe_EquationsSet_AnalyticCreateStart(EquationsSetStokes,CMFE_EQUATIONS_SET_NAVIER_STOKES_EQUATION_TWO_DIM_4, & + ! & AnalyticFieldUserNumber,AnalyticField,Err) + !Finish the equations set analytic field variables + !CALL cmfe_EquationsSet_AnalyticCreateFinish(EquationsSetStokes,Err) + + ! + !================================================================================================================================ + ! + !EQUATIONS !Create the equations set equations @@ -653,7 +653,7 @@ PROGRAM STOKESALEEXAMPLE CALL cmfe_Problem_Initialise(Problem,Err) CALL cmfe_ControlLoop_Initialise(ControlLoop,Err) CALL cmfe_Problem_CreateStart(ProblemUserNumber,[CMFE_PROBLEM_FLUID_MECHANICS_CLASS,CMFE_PROBLEM_STOKES_EQUATION_TYPE, & - & CMFE_PROBLEM_ALE_STOKES_SUBTYPE],Problem,Err) + & CMFE_PROBLEM_ALE_STOKES_SUBTYPE],Problem,Err) !Finish the creation of a problem. CALL cmfe_Problem_CreateFinish(Problem,Err) !Start the creation of the problem control loop @@ -662,7 +662,7 @@ PROGRAM STOKESALEEXAMPLE CALL cmfe_Problem_ControlLoopGet(Problem,CMFE_CONTROL_LOOP_NODE,ControlLoop,Err) !Set the times CALL cmfe_ControlLoop_TimesSet(ControlLoop,DYNAMIC_SOLVER_STOKES_START_TIME,DYNAMIC_SOLVER_STOKES_STOP_TIME, & - & DYNAMIC_SOLVER_STOKES_TIME_INCREMENT,Err) + & DYNAMIC_SOLVER_STOKES_TIME_INCREMENT,Err) !Set the output timing CALL cmfe_ControlLoop_TimeOutputSet(ControlLoop,DYNAMIC_SOLVER_STOKES_OUTPUT_FREQUENCY,Err) CALL cmfe_ControlLoop_TimeInputSet(ControlLoop,DYNAMIC_SOLVER_STOKES_INPUT_OPTION,Err) @@ -687,15 +687,15 @@ PROGRAM STOKESALEEXAMPLE CALL cmfe_Solver_OutputTypeSet(LinearSolverMovingMesh,4,Err) !Set the solver settings IF(LINEAR_SOLVER_MOVING_MESH_DIRECT_FLAG) THEN - CALL cmfe_Solver_LinearTypeSet(LinearSolverMovingMesh,CMFE_SOLVER_LINEAR_DIRECT_SOLVE_TYPE,Err) - CALL cmfe_Solver_LibraryTypeSet(LinearSolverMovingMesh,CMFE_SOLVER_MUMPS_LIBRARY,Err) + CALL cmfe_Solver_LinearTypeSet(LinearSolverMovingMesh,CMFE_SOLVER_LINEAR_DIRECT_SOLVE_TYPE,Err) + CALL cmfe_Solver_LibraryTypeSet(LinearSolverMovingMesh,CMFE_SOLVER_MUMPS_LIBRARY,Err) ELSE - CALL cmfe_Solver_LinearTypeSet(LinearSolverMovingMesh,CMFE_SOLVER_LINEAR_ITERATIVE_SOLVE_TYPE,Err) - CALL cmfe_Solver_LinearIterativeMaximumIterationsSet(LinearSolverMovingMesh,MAXIMUM_ITERATIONS,Err) - CALL cmfe_Solver_LinearIterativeDivergenceToleranceSet(LinearSolverMovingMesh,DIVERGENCE_TOLERANCE,Err) - CALL cmfe_Solver_LinearIterativeRelativeToleranceSet(LinearSolverMovingMesh,RELATIVE_TOLERANCE,Err) - CALL cmfe_Solver_LinearIterativeAbsoluteToleranceSet(LinearSolverMovingMesh,ABSOLUTE_TOLERANCE,Err) - CALL cmfe_Solver_LinearIterativeGMRESRestartSet(LinearSolverMovingMesh,RESTART_VALUE,Err) + CALL cmfe_Solver_LinearTypeSet(LinearSolverMovingMesh,CMFE_SOLVER_LINEAR_ITERATIVE_SOLVE_TYPE,Err) + CALL cmfe_Solver_LinearIterativeMaximumIterationsSet(LinearSolverMovingMesh,MAXIMUM_ITERATIONS,Err) + CALL cmfe_Solver_LinearIterativeDivergenceToleranceSet(LinearSolverMovingMesh,DIVERGENCE_TOLERANCE,Err) + CALL cmfe_Solver_LinearIterativeRelativeToleranceSet(LinearSolverMovingMesh,RELATIVE_TOLERANCE,Err) + CALL cmfe_Solver_LinearIterativeAbsoluteToleranceSet(LinearSolverMovingMesh,ABSOLUTE_TOLERANCE,Err) + CALL cmfe_Solver_LinearIterativeGMRESRestartSet(LinearSolverMovingMesh,RESTART_VALUE,Err) ENDIF !Get the dynamic ALE solver CALL cmfe_Problem_SolverGet(Problem,CMFE_CONTROL_LOOP_NODE,SolverStokesUserNumber,DynamicSolverStokes,Err) @@ -709,15 +709,15 @@ PROGRAM STOKESALEEXAMPLE CALL cmfe_Solver_OutputTypeSet(LinearSolverStokes,LINEAR_SOLVER_STOKES_OUTPUT_TYPE,Err) !Set the solver settings IF(LINEAR_SOLVER_STOKES_DIRECT_FLAG) THEN - CALL cmfe_Solver_LinearTypeSet(LinearSolverStokes,CMFE_SOLVER_LINEAR_DIRECT_SOLVE_TYPE,Err) - CALL cmfe_Solver_LibraryTypeSet(LinearSolverStokes,CMFE_SOLVER_MUMPS_LIBRARY,Err) + CALL cmfe_Solver_LinearTypeSet(LinearSolverStokes,CMFE_SOLVER_LINEAR_DIRECT_SOLVE_TYPE,Err) + CALL cmfe_Solver_LibraryTypeSet(LinearSolverStokes,CMFE_SOLVER_MUMPS_LIBRARY,Err) ELSE - CALL cmfe_Solver_LinearTypeSet(LinearSolverStokes,CMFE_SOLVER_LINEAR_ITERATIVE_SOLVE_TYPE,Err) - CALL cmfe_Solver_LinearIterativeMaximumIterationsSet(LinearSolverStokes,MAXIMUM_ITERATIONS,Err) - CALL cmfe_Solver_LinearIterativeDivergenceToleranceSet(LinearSolverStokes,DIVERGENCE_TOLERANCE,Err) - CALL cmfe_Solver_LinearIterativeRelativeToleranceSet(LinearSolverStokes,RELATIVE_TOLERANCE,Err) - CALL cmfe_Solver_LinearIterativeAbsoluteToleranceSet(LinearSolverStokes,ABSOLUTE_TOLERANCE,Err) - CALL cmfe_Solver_LinearIterativeGMRESRestartSet(LinearSolverStokes,RESTART_VALUE,Err) + CALL cmfe_Solver_LinearTypeSet(LinearSolverStokes,CMFE_SOLVER_LINEAR_ITERATIVE_SOLVE_TYPE,Err) + CALL cmfe_Solver_LinearIterativeMaximumIterationsSet(LinearSolverStokes,MAXIMUM_ITERATIONS,Err) + CALL cmfe_Solver_LinearIterativeDivergenceToleranceSet(LinearSolverStokes,DIVERGENCE_TOLERANCE,Err) + CALL cmfe_Solver_LinearIterativeRelativeToleranceSet(LinearSolverStokes,RELATIVE_TOLERANCE,Err) + CALL cmfe_Solver_LinearIterativeAbsoluteToleranceSet(LinearSolverStokes,ABSOLUTE_TOLERANCE,Err) + CALL cmfe_Solver_LinearIterativeGMRESRestartSet(LinearSolverStokes,RESTART_VALUE,Err) ENDIF !Finish the creation of the problem solver CALL cmfe_Problem_SolversCreateFinish(Problem,Err) @@ -764,86 +764,86 @@ PROGRAM STOKESALEEXAMPLE CALL cmfe_SolverEquations_BoundaryConditionsCreateStart(SolverEquationsStokes,BoundaryConditionsStokes,Err) !Set fixed wall nodes IF(FIXED_WALL_NODES_STOKES_FLAG) THEN - DO NODE_COUNTER=1,NUMBER_OF_FIXED_WALL_NODES_STOKES - NODE_NUMBER=FIXED_WALL_NODES_STOKES(NODE_COUNTER) - CONDITION=CMFE_BOUNDARY_CONDITION_FIXED_WALL - CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) - IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN - DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - VALUE=0.0_CMISSRP - CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsStokes,DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,1, & - & CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) - ENDDO - ENDIF - ENDDO + DO NODE_COUNTER=1,NUMBER_OF_FIXED_WALL_NODES_STOKES + NODE_NUMBER=FIXED_WALL_NODES_STOKES(NODE_COUNTER) + CONDITION=CMFE_BOUNDARY_CONDITION_FIXED_WALL + CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) + IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN + DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS + VALUE=0.0_CMISSRP + CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsStokes,DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,1, & + & CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) + ENDDO + ENDIF + ENDDO ENDIF !Set moved wall nodes IF(MOVED_WALL_NODES_STOKES_FLAG) THEN - DO NODE_COUNTER=1,NUMBER_OF_MOVED_WALL_NODES_STOKES - NODE_NUMBER=MOVED_WALL_NODES_STOKES(NODE_COUNTER) - CONDITION=CMFE_BOUNDARY_CONDITION_MOVED_WALL - CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) - IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN - DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - VALUE=0.0_CMISSRP - CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsStokes,DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,1, & - & CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) - ENDDO - ENDIF - ENDDO + DO NODE_COUNTER=1,NUMBER_OF_MOVED_WALL_NODES_STOKES + NODE_NUMBER=MOVED_WALL_NODES_STOKES(NODE_COUNTER) + CONDITION=CMFE_BOUNDARY_CONDITION_MOVED_WALL + CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) + IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN + DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS + VALUE=0.0_CMISSRP + CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsStokes,DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,1, & + & CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) + ENDDO + ENDIF + ENDDO ENDIF !Set velocity boundary conditions IF(INLET_WALL_NODES_STOKES_FLAG) THEN - DO NODE_COUNTER=1,NUMBER_OF_INLET_WALL_NODES_STOKES - NODE_NUMBER=INLET_WALL_NODES_STOKES(NODE_COUNTER) - CONDITION=CMFE_BOUNDARY_CONDITION_FIXED_INLET - CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) - IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN - DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - VALUE=BOUNDARY_CONDITIONS_STOKES(COMPONENT_NUMBER) - CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsStokes,DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,1, & - & CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) - ENDDO - ENDIF - ENDDO + DO NODE_COUNTER=1,NUMBER_OF_INLET_WALL_NODES_STOKES + NODE_NUMBER=INLET_WALL_NODES_STOKES(NODE_COUNTER) + CONDITION=CMFE_BOUNDARY_CONDITION_FIXED_INLET + CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) + IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN + DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS + VALUE=BOUNDARY_CONDITIONS_STOKES(COMPONENT_NUMBER) + CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsStokes,DependentFieldStokes,CMFE_FIELD_U_VARIABLE_TYPE,1, & + & CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) + ENDDO + ENDIF + ENDDO ENDIF !Finish the creation of the equations set boundary conditions CALL cmfe_SolverEquations_BoundaryConditionsCreateFinish(SolverEquationsStokes,Err) + !Start the creation of the equations set boundary conditions for moving mesh CALL cmfe_BoundaryConditions_Initialise(BoundaryConditionsMovingMesh,Err) CALL cmfe_SolverEquations_BoundaryConditionsCreateStart(SolverEquationsMovingMesh,BoundaryConditionsMovingMesh,Err) !Set fixed wall nodes IF(FIXED_WALL_NODES_MOVING_MESH_FLAG) THEN - DO NODE_COUNTER=1,NUMBER_OF_FIXED_WALL_NODES_MOVING_MESH - NODE_NUMBER=FIXED_WALL_NODES_MOVING_MESH(NODE_COUNTER) - CONDITION=CMFE_BOUNDARY_CONDITION_FIXED_WALL - CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) - IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN - DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - VALUE=0.0_CMISSRP - CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsMovingMesh,DependentFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE, & - & 1, & - & CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) - ENDDO - ENDIF - ENDDO + DO NODE_COUNTER=1,NUMBER_OF_FIXED_WALL_NODES_MOVING_MESH + NODE_NUMBER=FIXED_WALL_NODES_MOVING_MESH(NODE_COUNTER) + CONDITION=CMFE_BOUNDARY_CONDITION_FIXED_WALL + CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) + IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN + DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS + VALUE=0.0_CMISSRP + CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsMovingMesh,DependentFieldMovingMesh, & + & CMFE_FIELD_U_VARIABLE_TYPE,1,CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) + ENDDO + ENDIF + ENDDO ENDIF !Set moved wall nodes IF(MOVED_WALL_NODES_MOVING_MESH_FLAG) THEN - DO NODE_COUNTER=1,NUMBER_OF_MOVED_WALL_NODES_MOVING_MESH - NODE_NUMBER=MOVED_WALL_NODES_MOVING_MESH(NODE_COUNTER) - CONDITION=CMFE_BOUNDARY_CONDITION_MOVED_WALL - CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) - IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN - DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS - VALUE=BOUNDARY_CONDITIONS_MOVING_MESH(COMPONENT_NUMBER) - CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsMovingMesh,DependentFieldMovingMesh,CMFE_FIELD_U_VARIABLE_TYPE, & - & 1, & - & CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) - ENDDO - ENDIF - ENDDO + DO NODE_COUNTER=1,NUMBER_OF_MOVED_WALL_NODES_MOVING_MESH + NODE_NUMBER=MOVED_WALL_NODES_MOVING_MESH(NODE_COUNTER) + CONDITION=CMFE_BOUNDARY_CONDITION_MOVED_WALL + CALL cmfe_Decomposition_NodeDomainGet(Decomposition,NODE_NUMBER,1,BoundaryNodeDomain,Err) + IF(BoundaryNodeDomain==ComputationalNodeNumber) THEN + DO COMPONENT_NUMBER=1,NUMBER_OF_DIMENSIONS + VALUE=BOUNDARY_CONDITIONS_MOVING_MESH(COMPONENT_NUMBER) + CALL cmfe_BoundaryConditions_SetNode(BoundaryConditionsMovingMesh,DependentFieldMovingMesh, & + & CMFE_FIELD_U_VARIABLE_TYPE,1,CMFE_NO_GLOBAL_DERIV,NODE_NUMBER,COMPONENT_NUMBER,CONDITION,VALUE,Err) + ENDDO + ENDIF + ENDDO ENDIF + !CALL cmfe_SolverEquations_BoundaryConditionsAnalytic(SolverEquationsStokes,Err) !Finish the creation of the equations set boundary conditions CALL cmfe_SolverEquations_BoundaryConditionsCreateFinish(SolverEquationsMovingMesh,Err) @@ -851,10 +851,12 @@ PROGRAM STOKESALEEXAMPLE !================================================================================================================================ ! - !RUN SOLVERS + !Output Analytic analysis + !Call cmfe_AnalyticAnalysis_Output(DependentFieldStokes,"StokesAnalytic",Err) - !Turn of PETSc error handling - !CALL PETSC_ERRORHANDLING_SET_ON(ERR,ERROR,*999) + ! + !================================================================================================================================ + ! !Solve the problem WRITE(*,'(A)') "Solving problem..." @@ -867,15 +869,15 @@ PROGRAM STOKESALEEXAMPLE !OUTPUT - EXPORT_FIELD_IO=.TRUE. + EXPORT_FIELD_IO=.FALSE. IF(EXPORT_FIELD_IO) THEN - WRITE(*,'(A)') "Exporting fields..." - CALL cmfe_Fields_Initialise(Fields,Err) - CALL cmfe_Fields_Create(Region,Fields,Err) - CALL cmfe_Fields_NodesExport(Fields,"ALEStokes","FORTRAN",Err) - CALL cmfe_Fields_ElementsExport(Fields,"ALEStokes","FORTRAN",Err) - CALL cmfe_Fields_Finalise(Fields,Err) - WRITE(*,'(A)') "Field exported!" + WRITE(*,'(A)') "Exporting fields..." + CALL cmfe_Fields_Initialise(Fields,Err) + CALL cmfe_Fields_Create(Region,Fields,Err) + CALL cmfe_Fields_NodesExport(Fields,"stokes_ale","FORTRAN",Err) + CALL cmfe_Fields_ElementsExport(Fields,"stokes_ale","FORTRAN",Err) + CALL cmfe_Fields_Finalise(Fields,Err) + WRITE(*,'(A)') "Field exported!" ENDIF !Finialise CMISS @@ -883,4 +885,4 @@ PROGRAM STOKESALEEXAMPLE WRITE(*,'(A)') "Program successfully completed." STOP -END PROGRAM STOKESALEEXAMPLE +END PROGRAM stokes_ale diff --git a/src/fortran/visualiseStokesALE.cmgui b/src/fortran/visualiseStokesALE.cmgui new file mode 100755 index 0000000..898552c --- /dev/null +++ b/src/fortran/visualiseStokesALE.cmgui @@ -0,0 +1,48 @@ +$dt=1; # frequency +$steps=40000; # number of time steps +$cores=1; # number of processors + +$w=500; # width of the graphical window +$h=1000; # height of the graphical window + +#Read in the sequence of nodal positions. +for ($i=0;$i<$steps;$i=$i+$dt) + { + $time = $i/($dt*100) + for ($j=0;$j<$cores;$j=$j+1) + { + $filename = sprintf("./output/MainTime_%01d.part%01d.exnode", $i, $j); + print "Reading $filename time $time\n"; + gfx read node "$filename" time $i; + } + } + +#Read in the element description +for ($k=0;$k<$cores;$k=$k+1) + { + $filename = sprintf("./output/MainTime_0.part%01d.exelem", $k); + gfx read element "$filename"; + } + +gfx define faces egroup StokesRegion + +gfx define field Coordinate.x component Coordinate.x +gfx define field Coordinate.y component Coordinate.y +gfx define field Coordinate.z component Coordinate.z + +gfx def field x_velocity component U.1 +gfx def field y_velocity component U.2 +gfx def field z_velocity component U.3 +gfx def field pressure component U.4 + +gfx define field vector_field coord rectangular_cartesian component U.1 U.2 U.3 U.4 +gfx modify g_element StokesRegion node_points data z_velocity + +gfx edit scene +gfx create window 1; +gfx def faces + +#Set the timekeeper playing +gfx timekeeper default set 1.0; +gfx timekeeper default speed 1; +gfx create time_editor