|
Last change
on this file since 11322 was 11322, checked in by Mathieu Morlighem, 14 years ago |
|
Added Newton's method for Pattyn, parallel only for now, to be improved
|
|
File size:
478 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * solvers.h:
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | #ifndef SOLVERS_H_
|
|---|
| 6 | #define SOLVERS_H_
|
|---|
| 7 |
|
|---|
| 8 | #include "../objects/objects.h"
|
|---|
| 9 | #include "../io/io.h"
|
|---|
| 10 |
|
|---|
| 11 | struct OptArgs;
|
|---|
| 12 | class FemModel;
|
|---|
| 13 |
|
|---|
| 14 | void solver_thermal_nonlinear(FemModel* femmodel);
|
|---|
| 15 | void solver_nonlinear(FemModel* femmodel,bool conserve_loads);
|
|---|
| 16 | void solver_newton(FemModel* femmodel);
|
|---|
| 17 | void solver_stokescoupling_nonlinear(FemModel* femmodel,bool conserve_loads);
|
|---|
| 18 | void solver_linear(FemModel* femmodel);
|
|---|
| 19 | void solver_adjoint_linear(FemModel* femmodel);
|
|---|
| 20 |
|
|---|
| 21 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.