Skip to content

Commit

Permalink
change name of function
Browse files Browse the repository at this point in the history
  • Loading branch information
m-julian committed Oct 16, 2024
1 parent df2ddb0 commit bb7f649
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ichor_core/ichor/core/multipoles/hexadecapole.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def sorting_function(alpha: int, beta: int, gamma: int, chi: int):
return sorted_li[0], sorted_li[2], sorted_li[3]


def G(alpha, beta, gamma, chi, dipole, quadrupole, octupole, displacement_vector):
def g(alpha, beta, gamma, chi, dipole, quadrupole, octupole, displacement_vector):

# sort by number of repeating indices
# the largest amount of repetitions are on the left
Expand Down Expand Up @@ -625,7 +625,7 @@ def hexadecapole_one_term_general_expression(
hexadecapole[alpha, beta, gamma, chi]
+ phi_prime(alpha, beta, gamma, chi, displacement_vector) * monopole
+ (1 / 6)
* G(alpha, beta, gamma, chi, dipole, quadrupole, octupole, displacement_vector)
* g(alpha, beta, gamma, chi, dipole, quadrupole, octupole, displacement_vector)
)


Expand Down

0 comments on commit bb7f649

Please sign in to comment.