Last change
on this file since 12832 was 12832, checked in by Eric.Larour, 13 years ago |
Almost done migrating objects to classes
|
File size:
486 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"
|
---|
[4029] | 9 | #include "../io/io.h"
|
---|
| 10 |
|
---|
| 11 | struct OptArgs;
|
---|
| 12 | class FemModel;
|
---|
| 13 |
|
---|
[4839] | 14 | void solver_thermal_nonlinear(FemModel* femmodel);
|
---|
[7637] | 15 | void solver_nonlinear(FemModel* femmodel,bool conserve_loads);
|
---|
[11322] | 16 | void solver_newton(FemModel* femmodel);
|
---|
[6024] | 17 | void solver_stokescoupling_nonlinear(FemModel* femmodel,bool conserve_loads);
|
---|
[4837] | 18 | void solver_linear(FemModel* femmodel);
|
---|
[4839] | 19 | void solver_adjoint_linear(FemModel* femmodel);
|
---|
[4029] | 20 |
|
---|
| 21 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.