Rename K -> T

This commit is contained in:
ysyapa 2024-02-08 21:34:37 +00:00
parent 7edcc47230
commit 11ce5304bb
1 changed files with 2 additions and 2 deletions

View File

@ -26,9 +26,9 @@ end
get_V_matrix(V_pq, p, w) = V_pq.(p, transpose(p)) .* transpose(w)
get_K_matrix(p, μ) = collect(Diagonal(p.*p ./ (2*μ)))
get_T_matrix(p, μ) = collect(Diagonal(p.*p ./ (2*μ)))
get_H_matrix(V_pq, p, w, μ=0.5) = get_K_matrix(p, μ) + get_V_matrix(V_pq, p, w)
get_H_matrix(V_pq, p, w, μ=0.5) = get_T_matrix(p, μ) + get_V_matrix(V_pq, p, w)
function identify_pole_i(p, evals, μ=0.5)
mesh_Es = (p.*p) ./ (2*μ)