15aed82e4SJeremy L Thompson // Copyright (c) 2017-2024, 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 7509d4af6SJeremy L Thompson #pragma once 85754ecacSJeremy L Thompson 95754ecacSJeremy L Thompson // Problem options 10*c8565611SJeremy L Thompson typedef enum { ELAS_LINEAR = 0, ELAS_SS_NH = 1, ELAS_FS_NH = 2, ELAS_FS_MR = 3 } problemType; 11*c8565611SJeremy L Thompson static const char *const problemTypes[] = {"Linear", "SS-NH", "FS-NH", "FS-MR", "problemType", "ELAS_", 0}; 12*c8565611SJeremy L Thompson static const char *const problemTypesForDisp[] = {"Linear elasticity", "Hyperelasticity small strain, Neo-Hookean", 13*c8565611SJeremy L Thompson "Hyperelasticity finite strain Initial configuration Neo-Hookean", 14*c8565611SJeremy L Thompson "Hyperelasticity finite strain Initial configuration Moony-Rivlin"}; 15