Skip to content

Commit

Permalink
discript temperature in file
Browse files Browse the repository at this point in the history
  • Loading branch information
ShuN6211 committed Dec 31, 2022
1 parent c8f20b6 commit 31fc72e
Show file tree
Hide file tree
Showing 16 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/sc_vortex_2d/vortex.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from scipy import interpolate

from .data_vortex import t03, t05, t08
from .data_vortex import temperature_03, temperature_05, temperature_08
from .vortex_instance import VortexInstance


Expand Down Expand Up @@ -45,7 +45,7 @@ def __init__(self) -> None:

def construct(self) -> None:
self.pair_potential, self.spectra_dict, self.u_dict, self.v_dict = _construct(
t03
temperature_03
)

def get_pair_potential(self) -> interpolate.CubicSpline:
Expand Down Expand Up @@ -78,7 +78,7 @@ def __init__(self) -> None:

def construct(self) -> None:
self.pair_potential, self.spectra_dict, self.u_dict, self.v_dict = _construct(
t05
temperature_05
)

def get_pair_potential(self) -> interpolate.CubicSpline:
Expand Down Expand Up @@ -111,7 +111,7 @@ def __init__(self) -> None:

def construct(self) -> None:
self.pair_potential, self.spectra_dict, self.u_dict, self.v_dict = _construct(
t08
temperature_08
)

def get_pair_potential(self) -> interpolate.CubicSpline:
Expand Down

0 comments on commit 31fc72e

Please sign in to comment.