Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 3 : //* 4 : //* All rights reserved, see COPYRIGHT for full restrictions 5 : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT 6 : //* 7 : //* Licensed under LGPL 2.1, please see LICENSE for details 8 : //* https://www.gnu.org/licenses/lgpl-2.1.html 9 : 10 : #include "KKSAction.h" 11 : #include "Factory.h" 12 : #include "Parser.h" 13 : #include "FEProblem.h" 14 : 15 : InputParameters 16 0 : KKSAction::validParams() 17 : { 18 0 : InputParameters params = Action::validParams(); 19 0 : params.addParam<std::string>("c_name_base", "c", "base name of the concentration variables"); 20 0 : params.addParam<std::string>("eta_name", "eta", "name of the order parameter"); 21 0 : params.addRequiredParam<std::vector<std::string>>("phase_names", "short names for the phases"); 22 0 : params.addRequiredParam<std::vector<std::string>>("c_names", 23 : "short names for the concentrations"); 24 0 : return params; 25 0 : } 26 : 27 0 : KKSAction::KKSAction(const InputParameters & params) : Action(params) 28 : // _z2(getParam<Real>("z2")) 29 : { 30 0 : } 31 : 32 : void 33 0 : KKSAction::act() 34 : { 35 0 : mooseError("Not implemented"); 36 : }