www.mooseframework.org
Elastic.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 #pragma once
11 
12 #include "SolidModel.h"
13 
14 class Elastic;
15 
16 template <>
17 InputParameters validParams<Elastic>();
18 
19 class Elastic : public SolidModel
20 {
21 public:
22  Elastic(const InputParameters & parameters);
23  virtual ~Elastic();
24 
25 protected:
26 };
27 
Elastic::Elastic
Elastic(const InputParameters &parameters)
Definition: Elastic.C:23
SolidModel
SolidModel is the base class for all this module's solid mechanics material models.
Definition: SolidModel.h:33
Elastic::~Elastic
virtual ~Elastic()
Definition: Elastic.C:31
Elastic
Definition: Elastic.h:19
SolidModel.h
validParams< Elastic >
InputParameters validParams< Elastic >()
Definition: Elastic.C:16