xref: /libCEED/examples/solids/problems/mooney-rivlin.h (revision 2b730f8b5a9c809740a0b3b302db43a719c636b1)
13d8e8822SJeremy L Thompson // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
23d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
33d8e8822SJeremy L Thompson //
43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
53d8e8822SJeremy L Thompson //
63d8e8822SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
73d8e8822SJeremy L Thompson 
85754ecacSJeremy L Thompson #ifndef mooney_rivlin_h
95754ecacSJeremy L Thompson #define mooney_rivlin_h
105754ecacSJeremy L Thompson 
115754ecacSJeremy L Thompson #include <petsc.h>
12*2b730f8bSJeremy L Thompson 
135754ecacSJeremy L Thompson #include "../include/structs.h"
145754ecacSJeremy L Thompson 
155754ecacSJeremy L Thompson #ifndef PHYSICS_STRUCT_MR
165754ecacSJeremy L Thompson #define PHYSICS_STRUCT_MR
175754ecacSJeremy L Thompson typedef struct Physics_MR_ *Physics_MR;
185754ecacSJeremy L Thompson struct Physics_MR_ {
195754ecacSJeremy L Thompson   // Material properties for MR
205754ecacSJeremy L Thompson   CeedScalar mu_1;
215754ecacSJeremy L Thompson   CeedScalar mu_2;
225754ecacSJeremy L Thompson   CeedScalar lambda;
235754ecacSJeremy L Thompson };
245754ecacSJeremy L Thompson #endif  // PHYSICS_STRUCT_MR
255754ecacSJeremy L Thompson 
265754ecacSJeremy L Thompson // Create context object
27*2b730f8bSJeremy L Thompson PetscErrorCode PhysicsContext_MR(MPI_Comm comm, Ceed ceed, Units *units, CeedQFunctionContext *ctx);
28*2b730f8bSJeremy L Thompson PetscErrorCode PhysicsSmootherContext_MR(MPI_Comm comm, Ceed ceed, CeedQFunctionContext ctx, CeedQFunctionContext *ctx_smoother);
295754ecacSJeremy L Thompson 
305754ecacSJeremy L Thompson // Process physics options - Mooney-Rivlin
315754ecacSJeremy L Thompson PetscErrorCode ProcessPhysics_MR(MPI_Comm comm, Physics_MR phys, Units units);
325754ecacSJeremy L Thompson 
335754ecacSJeremy L Thompson #endif  // mooney_rivlin_h
34