Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ice-dev] How do I get ICE working with MOOSE?

Lee,


Alex McCaskey, CC'ed, will help you with this. He might also give a demo if you want.


Jay


Jay Jay Billings
Oak Ridge National Laboratory
Twitter Handle: @jayjaybillings

From: LEE HIVELY <lee.hively@xxxxxxxxxxxxxxxxxxxxxxx>
Sent: Wednesday, March 09, 2016 1:27 PM
To: Billings, Jay Jay
Subject: How do I get ICE working with MOOSE?
 
Jay -
I’ve gotten MOOSE and PETSc installed on my iMac.
Now I need to get ICE working with MOOSE.
The below response points me to a script that looks like python code, install_ice_and_moose.py.
The Python Software Foundation site says that Mac OS X 10.8 comes with Python 2.7 pre-installed by Apple.
I have Mac OS X version 10.11.3 (El Capitan).
If Python is pre-installed on this Mac OS X version, where do I find it?
Alternatively, if it’s not pre-installed, then I have to install Python, right?
What command line do I use to run install_ice_and_moose.py?
Thanks – Lee


From: LEE HIVELY <lee.hively@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Friday, March 4, 2016 at 11:19 AM
To: <moose-users@xxxxxxxxxxxxxxxx>
Subject: Re: failure of MOOSE installation

Thanks!

From: <moose-users@xxxxxxxxxxxxxxxx> on behalf of Cody Permann <codypermann@xxxxxxxxx>
Reply-To: <moose-users@xxxxxxxxxxxxxxxx>
Date: Thursday, March 3, 2016 at 5:15 PM
To: "moose-users@xxxxxxxxxxxxxxxx" <moose-users@xxxxxxxxxxxxxxxx>
Subject: Re: failure of MOOSE installation

The ICE team contributed a script to download and setup ICE with your MOOSE install. It's located in the "scripts" directory.

You need to make sure your environment is sane and you get a good compile of libMesh/MOOSE before you run that script though. It looks like MPI wasn't available when you configured libMesh (as Jason already pointed out).

You can look through the configure log of libMesh. It should detect MPI, PETSc with Hypre for a successful build.

Cody

On Thu, Mar 3, 2016 at 1:05 PM Miller, Jason M <jason.miller@xxxxxxx> wrote:
This happens when ones environment is not properly sourcing the moose_profile. Usually this means: Close all your opened terminals, and re-open them. And try to rebuild libMesh again.

As for getting ICE up and running, I will have to leave that to others on the forum.

Thanks!
Jason

On Thu, Mar 3, 2016 at 12:32 PM, <lee.hively@xxxxxxxxxxxxxxxxxxxxxxx> wrote:
I followed the instructions on the MOOSE website getting-started-page.
Everything went fine through “Compile libMesh."
When I got to the “Test It!” step, I got many failures (see below) at the ‘make -j8’ step.
The errors seem to involve unresolved references/paths to MPI_Comm, Petsc, and MPI_Abort.
There are many errors, so I may have missed other unresolved references.
Are there some default path(s) that need to be set, or am I doing something else wrong?

I am attempting this installation on an iMac Pro 2.7 GHz Intel Core i5 (1 processor/4 cores).
Memory = 16 GB
Monitor = Intel Iris Pro (1.536 GHz)
OS X 10.9.5 (13F34)
What is your guidance?

Also I need a GUI to define the geometry for my model (a novel form of Maxwell’s equations that eliminates the need for a gauge condition).
Jay Billings tells me that Peacock (MOOSE's GUI) has no capability for defining the problem geometry.
Jay suggests using ICE, which does have the capability for defining the problem geometry.
How do I get ICE to work with MOOSE?
Thanks - Lee Hively, PhD (ORNL retired)
========================================================
Last login: Thu Mar  3 13:17:52 on ttys000
Lees-iMac:~ leehively$ cd projects
Lees-iMac:projects leehively$ cd moose
Lees-iMac:moose leehively$ git pull --rebase origin master
 * branch            master     -> FETCH_HEAD
Current branch master is up to date.
Lees-iMac:moose leehively$ cd test
Lees-iMac:test leehively$ make -j8
MOOSE Compiling C++ (in opt mode) /Users/leehively/projects/moose/framework/src/actions/Action.C...
MOOSE Compiling C++ (in opt mode) /Users/leehively/projects/moose/framework/src/actions/ActionFactory.C...
MOOSE Compiling C++ (in opt mode) /Users/leehively/projects/moose/framework/src/actions/ActionWarehouse.C...
MOOSE Compiling C++ (in opt mode) /Users/leehively/projects/moose/framework/src/actions/AdaptivityAction.C...
MOOSE Compiling C++ (in opt mode) /Users/leehively/projects/moose/framework/src/actions/AddAuxVariableAction.C...
MOOSE Compiling C++ (in opt mode) /Users/leehively/projects/moose/framework/src/actions/AddBCAction.C...
MOOSE Compiling C++ (in opt mode) /Users/leehively/projects/moose/framework/src/actions/AddBoundsVectorsAction.C...
MOOSE Compiling C++ (in opt mode) /Users/leehively/projects/moose/framework/src/actions/AddConstraintAction.C...
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionFactory.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionFactory.h:22:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:19:
In file included from /Users/leehively/projects/moose/framework/include/base/MooseError.h:18:
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:1: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionWarehouse.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionWarehouse.h:24:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:19:
In file included from /Users/leehively/projects/moose/framework/include/base/MooseError.h:18:
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:1: error: 
      unknown type name 'MPI_Comm'
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:26: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
                         ^
/Users/leehively/projects/moose/framework/include/base/Moose.h:126:4: error: 
      PETSc has not been detected, please ensure your environment is set up
      properly then rerun the libmesh build script and try to compile MOOSE
      again.
  #error PETSc has not been detected, please ensure your environment is ...
   ^
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
^
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:26: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
                         ^
/Users/leehively/projects/moose/framework/include/base/Moose.h:126:4: error: 
      PETSc has not been detected, please ensure your environment is set up
      properly then rerun the libmesh build script and try to compile MOOSE
      again.
  #error PETSc has not been detected, please ensure your environment is ...
   ^
In file included from /Users/leehively/projects/moose/framework/src/actions/Action.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:19:
In file included from /Users/leehively/projects/moose/framework/include/base/MooseError.h:18:
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:1: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
^
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:26: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
                         ^
/Users/leehively/projects/moose/framework/include/base/Moose.h:126:4: error: 
      PETSc has not been detected, please ensure your environment is set up
      properly then rerun the libmesh build script and try to compile MOOSE
      again.
  #error PETSc has not been detected, please ensure your environment is ...
   ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AdaptivityAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AdaptivityAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:19:
In file included from /Users/leehively/projects/moose/framework/include/base/MooseError.h:18:
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:1: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
^
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:26: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
                         ^
/Users/leehively/projects/moose/framework/include/base/Moose.h:126:4: error: 
      PETSc has not been detected, please ensure your environment is set up
      properly then rerun the libmesh build script and try to compile MOOSE
      again.
  #error PETSc has not been detected, please ensure your environment is ...
   ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddAuxVariableAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddAuxVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:19:
In file included from /Users/leehively/projects/moose/framework/include/base/MooseError.h:18:
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:1: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
^
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:26: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
                         ^
/Users/leehively/projects/moose/framework/include/base/Moose.h:126:4: error: 
      PETSc has not been detected, please ensure your environment is set up
      properly then rerun the libmesh build script and try to compile MOOSE
      again.
  #error PETSc has not been detected, please ensure your environment is ...
   ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddConstraintAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddConstraintAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:19:
In file included from /Users/leehively/projects/moose/framework/include/base/MooseError.h:18:
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:1: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
^
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:26: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
                         ^
/Users/leehively/projects/moose/framework/include/base/Moose.h:126:4: error: 
      PETSc has not been detected, please ensure your environment is set up
      properly then rerun the libmesh build script and try to compile MOOSE
      again.
  #error PETSc has not been detected, please ensure your environment is ...
   ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBoundsVectorsAction.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBoundsVectorsAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:19:
In file included from /Users/leehively/projects/moose/framework/include/base/MooseError.h:18:
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:1: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBCAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBCAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:19:
In file included from /Users/leehively/projects/moose/framework/include/base/MooseError.h:18:
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:1: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
^
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:26: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
                         ^
/Users/leehively/projects/moose/framework/include/base/Moose.h:126:4: error: 
      PETSc has not been detected, please ensure your environment is set up
      properly then rerun the libmesh build script and try to compile MOOSE
      again.
  #error PETSc has not been detected, please ensure your environment is ...
   ^
/Users/leehively/projects/moose/framework/include/base/Moose.h:120:26: error: 
      unknown type name 'MPI_Comm'
MPI_Comm swapLibMeshComm(MPI_Comm new_comm);
                         ^
/Users/leehively/projects/moose/framework/include/base/Moose.h:126:4: error: 
      PETSc has not been detected, please ensure your environment is set up
      properly then rerun the libmesh build script and try to compile MOOSE
      again.
  #error PETSc has not been detected, please ensure your environment is ...
   ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionFactory.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionFactory.h:22:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:134:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot store raw pointers as restartable data!\nWrite a cu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionWarehouse.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionWarehouse.h:24:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:134:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot store raw pointers as restartable data!\nWrite a cu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionFactory.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionFactory.h:22:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:275:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot load raw pointers as restartable data!\nWrite a cus...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionWarehouse.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionWarehouse.h:24:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:275:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot load raw pointers as restartable data!\nWrite a cus...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/Action.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:134:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot store raw pointers as restartable data!\nWrite a cu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionFactory.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionFactory.h:22:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:202:59: error: 
      use of undeclared identifier 'MPI_Abort'
  MaterialProperty(const MaterialProperty<T> & /*src*/) { mooseError("Ma...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/Action.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:275:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot load raw pointers as restartable data!\nWrite a cus...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionFactory.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionFactory.h:22:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:205:76: error: 
      use of undeclared identifier 'MPI_Abort'
  ...& operator = (const MaterialProperty<T> & /*rhs*/) { mooseError("Materia...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionWarehouse.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionWarehouse.h:24:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:202:59: error: 
      use of undeclared identifier 'MPI_Abort'
  MaterialProperty(const MaterialProperty<T> & /*src*/) { mooseError("Ma...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AdaptivityAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AdaptivityAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:134:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot store raw pointers as restartable data!\nWrite a cu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionWarehouse.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionWarehouse.h:24:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:205:76: error: 
      use of undeclared identifier 'MPI_Abort'
  ...& operator = (const MaterialProperty<T> & /*rhs*/) { mooseError("Materia...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/Action.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:202:59: error: 
      use of undeclared identifier 'MPI_Abort'
  MaterialProperty(const MaterialProperty<T> & /*src*/) { mooseError("Ma...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AdaptivityAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AdaptivityAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:275:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot load raw pointers as restartable data!\nWrite a cus...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/Action.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:205:76: error: 
      use of undeclared identifier 'MPI_Abort'
  ...& operator = (const MaterialProperty<T> & /*rhs*/) { mooseError("Materia...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AdaptivityAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AdaptivityAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:202:59: error: 
      use of undeclared identifier 'MPI_Abort'
  MaterialProperty(const MaterialProperty<T> & /*src*/) { mooseError("Ma...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddAuxVariableAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddAuxVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:134:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot store raw pointers as restartable data!\nWrite a cu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AdaptivityAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AdaptivityAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:205:76: error: 
      use of undeclared identifier 'MPI_Abort'
  ...& operator = (const MaterialProperty<T> & /*rhs*/) { mooseError("Materia...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddAuxVariableAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddAuxVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:275:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot load raw pointers as restartable data!\nWrite a cus...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddConstraintAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddConstraintAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:134:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot store raw pointers as restartable data!\nWrite a cu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddAuxVariableAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddAuxVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:202:59: error: 
      use of undeclared identifier 'MPI_Abort'
  MaterialProperty(const MaterialProperty<T> & /*src*/) { mooseError("Ma...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBCAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBCAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:134:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot store raw pointers as restartable data!\nWrite a cu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddConstraintAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddConstraintAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:275:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot load raw pointers as restartable data!\nWrite a cus...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBoundsVectorsAction.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBoundsVectorsAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:134:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot store raw pointers as restartable data!\nWrite a cu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddAuxVariableAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddAuxVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddVariableAction.h:19:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:205:76: error: 
      use of undeclared identifier 'MPI_Abort'
  ...& operator = (const MaterialProperty<T> & /*rhs*/) { mooseError("Materia...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBCAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBCAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:275:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot load raw pointers as restartable data!\nWrite a cus...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expandedIn file included from /Users/leehively/projects/moose/framework/src/actions/ActionFactory.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionFactory.h:22:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
/Users/leehively/projects/moose/framework/include/utils/InputParameters.h:786:5:error: 
      use of undeclared identifier 'MPI_Abort'
    mooseError("Parameter " << name << " is NULL.\n" << error_string);
    ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
 from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionWarehouse.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionWarehouse.h:24:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
/Users/leehively/projects/moose/framework/include/utils/InputParameters.h:786:5:error: 
      use of undeclared identifier 'MPI_Abort'
    mooseError("Parameter " << name << " is NULL.\n" << error_string);
    ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddConstraintAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddConstraintAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:202:59: error: 
      use of undeclared identifier 'MPI_Abort'
  MaterialProperty(const MaterialProperty<T> & /*src*/) { mooseError("Ma...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBoundsVectorsAction.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBoundsVectorsAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
In file included from /Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:22:
/Users/leehively/projects/moose/framework/include/restart/DataIO.h:275:3: error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("Cannot load raw pointers as restartable data!\nWrite a cus...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionFactory.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionFactory.h:22:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
/Users/leehively/projects/moose/framework/include/utils/InputParameters.h:805:3:error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("You cannot call addRequiredParam and supply a default valu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBCAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBCAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:202:59: error: 
      use of undeclared identifier 'MPI_Abort'
  MaterialProperty(const MaterialProperty<T> & /*src*/) { mooseError("Ma...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddConstraintAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddConstraintAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:205:76: error: 
      use of undeclared identifier 'MPI_Abort'
  ...& operator = (const MaterialProperty<T> & /*rhs*/) { mooseError("Materia...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/Action.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
/Users/leehively/projects/moose/framework/include/utils/InputParameters.h:786:5:error: 
      use of undeclared identifier 'MPI_Abort'
    mooseError("Parameter " << name << " is NULL.\n" << error_string);
    ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBoundsVectorsAction.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBoundsVectorsAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:202:59: error: 
      use of undeclared identifier 'MPI_Abort'
  MaterialProperty(const MaterialProperty<T> & /*src*/) { mooseError("Ma...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBCAction.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBCAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/MooseObjectAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:205:76: error: 
      use of undeclared identifier 'MPI_Abort'
  ...& operator = (const MaterialProperty<T> & /*rhs*/) { mooseError("Materia...
                                                          ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/ActionWarehouse.C:15:
In file included from /Users/leehively/projects/moose/framework/include/actions/ActionWarehouse.h:24:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
/Users/leehively/projects/moose/framework/include/utils/InputParameters.h:805:3:error: 
      use of undeclared identifier 'MPI_Abort'
  mooseError("You cannot call addRequiredParam and supply a default valu...
  ^
/Users/leehively/projects/moose/framework/include/base/MooseError.h:55:7: note: 
      expanded from macro 'mooseError'
      MPI_Abort(libMesh::GLOBAL_COMM_WORLD,1)...
      ^
In file included from /Users/leehively/projects/moose/framework/src/actions/AddBoundsVectorsAction.C:16:
In file included from /Users/leehively/projects/moose/framework/include/actions/AddBoundsVectorsAction.h:18:
In file included from /Users/leehively/projects/moose/framework/include/actions/Action.h:18:
In file included from /Users/leehively/projects/moose/framework/include/utils/InputParameters.h:23:
In file included from /Users/leehively/projects/moose/framework/include/utils/MooseUtils.h:19:
/Users/leehively/projects/moose/framework/include/materials/MaterialProperty.h:205:76: error: 
      use of undeclared identifier 'MPI_Abort'
  ...& operator = (const MaterialProperty<T> & /*rhs*/) { mooseError("Materia...
                                                          ^
/Users/leehively/projects/moose/framework/incl

--
You received this message because you are subscribed to a topic in the Google Groups "moose-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/moose-users/18xTDui6fgU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to moose-users+unsubscribe@xxxxxxxxxxxxxxxx.
Visit this group at https://groups.google.com/group/moose-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/moose-users/CAK06EuUeUizGzUKVWdP0pcSq%3D2CXOvvE1AO6EX%3DxF800aVVcrQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Back to the top