svMultiPhysics
Loading...
Searching...
No Matches
contact.h
1// SPDX-FileCopyrightText: Copyright (c) Stanford University, The Regents of the University of California, and others.
2// SPDX-License-Identifier: BSD-3-Clause
3
4#ifndef CONTACTF_H
5#define CONTACT_H
6
7#include "ComMod.h"
8#include "SolutionStates.h"
9
10namespace contact {
11
12void construct_contact_pnlty(ComMod& com_mod, CmMod& cm_mod, const SolutionStates& solutions);
13
14};
15
16#endif
17
The CmMod class duplicates the data structures in the Fortran CMMOD module defined in COMU....
Definition CmMod.h:35
The ComMod class duplicates the data structures in the Fortran COMMOD module defined in MOD....
Definition ComMod.h:1525
Holds solution state at old, current, and intermediate time levels.
Definition SolutionStates.h:39