Line data Source code
1 : /****************************************************************/ 2 : /* DO NOT MODIFY THIS HEADER */ 3 : /* BlackBear */ 4 : /* */ 5 : /* (c) 2017 Battelle Energy Alliance, LLC */ 6 : /* ALL RIGHTS RESERVED */ 7 : /* */ 8 : /* Prepared by Battelle Energy Alliance, LLC */ 9 : /* Under Contract No. DE-AC07-05ID14517 */ 10 : /* With the U. S. Department of Energy */ 11 : /* */ 12 : /* See COPYRIGHT for full restrictions */ 13 : /****************************************************************/ 14 : 15 : #include "BlackBearTestApp.h" 16 : #include "MooseMain.h" 17 : #include "QuasiStaticSolidMechanicsPhysicsBase.h" 18 : 19 : // Begin the main program. 20 : int 21 1791 : main(int argc, char * argv[]) 22 : { 23 : // register inelastic strain 24 3582 : QuasiStaticSolidMechanicsPhysicsBase::addCartesianComponentOutput("inelastic_strain"); 25 : 26 1791 : return Moose::main<BlackBearTestApp>(argc, argv); 27 : }