-
Notifications
You must be signed in to change notification settings - Fork 98
/
FaultCohesiveLagrange.i
128 lines (109 loc) · 4.06 KB
/
FaultCohesiveLagrange.i
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// -*- C++ -*-
//
// ----------------------------------------------------------------------
//
// Brad T. Aagaard, U.S. Geological Survey
// Charles A. Williams, GNS Science
// Matthew G. Knepley, University of Chicago
//
// This code was developed as part of the Computational Infrastructure
// for Geodynamics (http://geodynamics.org).
//
// Copyright (c) 2010-2012 University of California, Davis
//
// See COPYING for license information.
//
// ----------------------------------------------------------------------
//
/** @file modulesrc/faults/FaultCohesiveLagrange.i
*
* @brief Python interface to C++ FaultCohesiveLagrange object.
*/
namespace pylith {
namespace faults {
class FaultCohesiveLagrange : public FaultCohesive
{ // class FaultCohesiveLagrange
// PUBLIC METHODS /////////////////////////////////////////////////
public :
/// Default constructor.
FaultCohesiveLagrange(void);
/// Destructor.
virtual
~FaultCohesiveLagrange(void);
/// Deallocate PETSc and local data structures.
virtual
void deallocate(void);
/** Initialize fault. Determine orientation and setup boundary
* condition parameters.
*
* @param mesh Finite-element mesh.
* @param upDir Direction perpendicular to along-strike direction that is
* not collinear with fault normal (usually "up" direction but could
* be up-dip direction; applies to fault surfaces in 2-D and 3-D).
*/
virtual
void initialize(const pylith::topology::Mesh& mesh,
const PylithScalar upDir[3]);
/** Split solution field for separate preconditioning.
*
* @param field Solution field.
*/
void splitField(pylith::topology::Field<pylith::topology::Mesh>* field);
/** Integrate contributions to residual term (r) for operator that
* do not require assembly across processors.
*
* @param residual Field containing values for residual
* @param t Current time
* @param fields Solution fields
*/
virtual
void integrateResidual(const pylith::topology::Field<pylith::topology::Mesh>& residual,
const PylithScalar t,
pylith::topology::SolutionFields* const fields);
/** Integrate contributions to Jacobian matrix (A) associated with
* operator that do not require assembly processors.
*
* @param jacobian Sparse matrix
* @param t Current time
* @param fields Solution fields
* @param mesh Finite-element mesh
*/
void integrateJacobian(pylith::topology::Jacobian* jacobian,
const PylithScalar t,
pylith::topology::SolutionFields* const fields);
/** Integrate contributions to Jacobian matrix (A) associated with
* operator that do not require assembly across processors.
*
* @param jacobian Diagonal Jacobian matrix as a field.
* @param t Current time
* @param fields Solution fields
*/
void integrateJacobian(pylith::topology::Field<pylith::topology::Mesh>* jacobian,
const PylithScalar t,
pylith::topology::SolutionFields* const fields);
/** Adjust solution from solver with lumped Jacobian to match Lagrange
* multiplier constraints.
*
* @param fields Solution fields
* @param t Current time.
* @param jacobian Jacobian of the system.
*/
virtual
void adjustSolnLumped(pylith::topology::SolutionFields* fields,
const PylithScalar t,
const pylith::topology::Field<pylith::topology::Mesh>& jacobian);
/** Verify configuration is acceptable.
*
* @param mesh Finite-element mesh
*/
void verifyConfiguration(const pylith::topology::Mesh& mesh) const;
/** Verify constraints are acceptable.
*
* @param field Solution field.
*/
virtual
void checkConstraints(const pylith::topology::Field<pylith::topology::Mesh>& solution) const;
}; // class FaultCohesiveLagrange
} // faults
} // pylith
// End of file