Last change
on this file since 14950 was 14950, checked in by Mathieu Morlighem, 12 years ago |
CHG: moved io to shared/io
|
File size:
542 bytes
|
Rev | Line | |
---|
[4029] | 1 | /*
|
---|
| 2 | * solvers.h:
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 | #ifndef SOLVERS_H_
|
---|
| 6 | #define SOLVERS_H_
|
---|
| 7 |
|
---|
[12832] | 8 | #include "../classes/objects/objects.h"
|
---|
[14950] | 9 | #include "../shared/io/io.h"
|
---|
[4029] | 10 |
|
---|
| 11 | struct OptArgs;
|
---|
| 12 | class FemModel;
|
---|
| 13 |
|
---|
[4839] | 14 | void solver_thermal_nonlinear(FemModel* femmodel);
|
---|
[14769] | 15 | void solver_hydro_nonlinear(FemModel* femmodel);
|
---|
[7637] | 16 | void solver_nonlinear(FemModel* femmodel,bool conserve_loads);
|
---|
[11322] | 17 | void solver_newton(FemModel* femmodel);
|
---|
[6024] | 18 | void solver_stokescoupling_nonlinear(FemModel* femmodel,bool conserve_loads);
|
---|
[4837] | 19 | void solver_linear(FemModel* femmodel);
|
---|
[4839] | 20 | void solver_adjoint_linear(FemModel* femmodel);
|
---|
[4029] | 21 |
|
---|
| 22 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.