1 点で電位を計算する。
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(fmm_plan_type), | intent(in) | :: | plan |
構築済みの FMM 計画。 |
||
| type(fmm_state_type), | intent(inout) | :: | state |
評価に使う FMM state。 |
||
| real(kind=dp), | intent(in) | :: | r(3) | |||
| real(kind=dp), | intent(out) | :: | phi |
電位 [V]( |
subroutine core_eval_potential_point_impl(plan, state, r, phi) type(fmm_plan_type), intent(in) :: plan type(fmm_state_type), intent(inout) :: state real(dp), intent(in) :: r(3) real(dp), intent(out) :: phi call core_eval_potential_point_xyz_impl(plan, state, r(1), r(2), r(3), phi) end subroutine core_eval_potential_point_impl