xref: /libCEED/examples/solids/elasticity.h (revision 3d8e882215d238700cdceb37404f76ca7fa24eaa)
1*3d8e8822SJeremy L Thompson // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
2*3d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3*3d8e8822SJeremy L Thompson //
4*3d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
5*3d8e8822SJeremy L Thompson //
6*3d8e8822SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
7*3d8e8822SJeremy L Thompson 
8b7c563b6SJeremy L Thompson #ifndef libceed_solids_examples_setup_h
9b7c563b6SJeremy L Thompson #define libceed_solids_examples_setup_h
10ccaff030SJeremy L Thompson 
113d576824SJeremy L Thompson #include <ceed.h>
12ccaff030SJeremy L Thompson #include <petsc.h>
13ccaff030SJeremy L Thompson #include <petscdmplex.h>
14ccaff030SJeremy L Thompson #include <petscfe.h>
153d576824SJeremy L Thompson #include <petscksp.h>
163d576824SJeremy L Thompson #include <stdbool.h>
173d576824SJeremy L Thompson #include <string.h>
185754ecacSJeremy L Thompson #include "problems/problems.h"
195754ecacSJeremy L Thompson #include "include/cl-options.h"
205754ecacSJeremy L Thompson #include "include/matops.h"
215754ecacSJeremy L Thompson #include "include/misc.h"
225754ecacSJeremy L Thompson #include "include/structs.h"
235754ecacSJeremy L Thompson #include "include/setup-dm.h"
245754ecacSJeremy L Thompson #include "include/setup-libceed.h"
255754ecacSJeremy L Thompson #include "include/utils.h"
26ccaff030SJeremy L Thompson 
27b8962995SJeremy L Thompson #if PETSC_VERSION_LT(3,17,0)
28b8962995SJeremy L Thompson #error "PETSc v3.17 or later is required"
29b8962995SJeremy L Thompson #endif
30b8962995SJeremy L Thompson 
31b7c563b6SJeremy L Thompson #endif // libceed_solids_examples_setup_h
32