GS Fitting implementation.
- Authors
- Chris Hansen
- Date
- March 2014
|
| real(8) function | fit_coil_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_coil_eval (self, gs) |
| | Needs Docs.
|
| |
| subroutine | fit_confidence (m, n, cofs) |
| | Estimate confidence in the fit from linearization.
|
| |
| real(8) function | fit_dflux_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_dflux_eval (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_dummy_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_dummy_eval (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_dummy_nax_corr (self, gs) |
| | Needs Docs.
|
| |
| logical function | fit_dummy_parallel (self) |
| | Needs Docs.
|
| |
| subroutine | fit_dummy_setup_comp (self) |
| | Needs Docs.
|
| |
| subroutine | fit_error (m, n, cofs, err, iflag) |
| |
| subroutine | fit_error_grad (m, n, cofs, err, jac_mat, ldjac_mat, iflag) |
| |
| real(8) function | fit_field_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_field_eval (self, gs) |
| | Needs Docs.
|
| |
| subroutine | fit_field_setup_comp (self) |
| | Needs Docs.
|
| |
| real(8) function | fit_flux_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_flux_eval (self, gs) |
| | Needs Docs.
|
| |
| subroutine, public | fit_gs (gs, fiti, fitp, fitpnorm, fitalam, fitr0, fitv0, fitcoils, fitf0, fixedcentering) |
| | Needs Docs.
|
| |
| real(8) function | fit_itor_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_itor_eval (self, gs) |
| | Needs Docs.
|
| |
| subroutine, public | fit_load (filename, cons) |
| | Needs Docs.
|
| |
| real(8) function | fit_press_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_press_eval (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_q_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_q_eval (self, gs) |
| | Needs Docs.
|
| |
| logical function | fit_q_parallel (self) |
| | Needs Docs.
|
| |
| real(8) function | fit_saddle_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_saddle_eval (self, gs) |
| | Needs Docs.
|
| |
| subroutine | fit_saddle_setup_comp (self) |
| | Needs Docs.
|
| |
| real(8) function | fit_vcont_error (self, gs) |
| | Needs Docs.
|
| |
| real(8) function | fit_vcont_eval (self, gs) |
| | Needs Docs.
|
| |
| subroutine | run_err (linear, err, m, ierr) |
| |
|
| real(8) | alam_best = 1.d99 |
| |
| real(8) | chi_best = 1.d99 |
| |
| real(8), dimension(:), allocatable | cofs_best |
| |
| real(8), dimension(:), allocatable | cofs_scale |
| |
| type(fit_constraint_ptr), dimension(:), pointer | conlist => NULL() |
| |
| real(8), dimension(:), allocatable | curr_in |
| |
| integer(4), private | feval_count = 0 |
| |
| logical, private | fit_alam = .FALSE. |
| |
| logical, private | fit_coils = .FALSE. |
| |
| logical, private | fit_f0 = .FALSE. |
| |
| logical, private | fit_i = .TRUE. |
| |
| logical, private | fit_p = .TRUE. |
| |
| logical, public | fit_pm = .FALSE. |
| |
| logical, private | fit_pnorm = .TRUE. |
| |
| logical, private | fit_r0 = .FALSE. |
| |
| logical, private | fit_v0 = .FALSE. |
| |
| logical, private | fixed_centering = .FALSE. |
| |
| integer(4), private | geval_count = 0 |
| |
| type(gs_eq), pointer, public | gs_active => NULL() |
| |
| logical, private | linearized_fit = .FALSE. |
| |
| integer(4), private | ncofs = 0 |
| |
| integer(4), private | ncond_active = 0 |
| |
| integer(4), private | ncons = 0 |
| |
| real(8) | pnorm_best = 1.d99 |
| |
| class(oft_vector), pointer | psi_best => NULL() |
| |
| real(8) | vcont_best = 1.d99 |
| |