Difference between revisions of "Creating MPM Materials"

From OSUPDOCS
Jump to navigation Jump to search
Line 9: Line 9:
The best way to create the source code is to duplicate the <tt>NewMaterial.cpp</tt> and <tt>NewMaterial.hpp</tt> files, which are templates for a new material class. Edit the files and change <tt>NewMaterial</tt> to the new material's class name. This template is a subclass of <tt>MaterialBase</tt>. Normally the new material will be a subclass of another class. If so, change <tt>MaterialBase</tt> references, as needed, to the actual parent class. These changes are needed whenever a method in the new material class needs to pass control to its immediate super class.
The best way to create the source code is to duplicate the <tt>NewMaterial.cpp</tt> and <tt>NewMaterial.hpp</tt> files, which are templates for a new material class. Edit the files and change <tt>NewMaterial</tt> to the new material's class name. This template is a subclass of <tt>MaterialBase</tt>. Normally the new material will be a subclass of another class. If so, change <tt>MaterialBase</tt> references, as needed, to the actual parent class. These changes are needed whenever a method in the new material class needs to pass control to its immediate super class.


== Material Class Hierarchy ==
=== Material Class Hierarchy ===


The new material should be inserted into the [[Material Models#Material Class Hierarchy|NairnMPM material class hierarchy]] and it should define a new, unique constant (in UPPERCASE) for that material. The current materials use numbers low numbers (starting with 1); those working on custom materials should probably use large number (>100). This new constant should replace the NEWMATERIAL constant in the new .hpp.
The new material should be inserted into the [[Material Models#Material Class Hierarchy|NairnMPM material class hierarchy]] with a unique name is ID. In the new materials header files, replace <tt>NEWMATERIAL</tt> with the material name (which by convention is in UPPERCASE) and replace the number in the new constant's definition with the new material's ID:
 
#define MYMATERIAL 102
 
All documented materials use low numbers (starting with 1). To avoid conflicts, those working on custom materials should use large number (>100).
 
== Editing Required in Core Code ==
 
Almost all coding will be done in the new material class files, but for that material to be recognized as an option in NairnMPM, a few places in the core code have to be edited first. Theses should be the only changes needed outside the new material class files.
 
# In MaterialController::AddMaterial(int matID,char *matName)- - add a new case in the switch(matID) section to call the default constructor of the new material when matID matches the new material constant defined in the previous section.
# Include the new material's header file at the top of Common/Read_XML/MaterialController.cpp

Revision as of 12:55, 4 December 2013

This section explains how to write C++ code create a new material class for use in NairnMPM.

Getting Started

The first steps are to add a new class to NairnMPM and to allow input command files to use that material. These steps involve creating the source code and some editing of the core code to add the new material class.

Class Source Code

The best way to create the source code is to duplicate the NewMaterial.cpp and NewMaterial.hpp files, which are templates for a new material class. Edit the files and change NewMaterial to the new material's class name. This template is a subclass of MaterialBase. Normally the new material will be a subclass of another class. If so, change MaterialBase references, as needed, to the actual parent class. These changes are needed whenever a method in the new material class needs to pass control to its immediate super class.

Material Class Hierarchy

The new material should be inserted into the NairnMPM material class hierarchy with a unique name is ID. In the new materials header files, replace NEWMATERIAL with the material name (which by convention is in UPPERCASE) and replace the number in the new constant's definition with the new material's ID:

#define MYMATERIAL 102

All documented materials use low numbers (starting with 1). To avoid conflicts, those working on custom materials should use large number (>100).

Editing Required in Core Code

Almost all coding will be done in the new material class files, but for that material to be recognized as an option in NairnMPM, a few places in the core code have to be edited first. Theses should be the only changes needed outside the new material class files.

  1. In MaterialController::AddMaterial(int matID,char *matName)- - add a new case in the switch(matID) section to call the default constructor of the new material when matID matches the new material constant defined in the previous section.
  2. Include the new material's header file at the top of Common/Read_XML/MaterialController.cpp