Skip to content

Commit

Permalink
Updated lshd method names.
Browse files Browse the repository at this point in the history
braden6521 committed Aug 19, 2024
1 parent c3ec0ea commit 7885ea7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opencsp/app/sofast/lib/load_sofast_hdf_data.py
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
from opencsp.common.lib.tool.hdf5_tools import load_hdf5_datasets


def load_ideal_mirror_from_hdf(file: str, focal_length: float) -> MirrorParametric:
def load_mirror_ideal(file: str, focal_length: float) -> MirrorParametric:
"""Uses the "OpticDefinition" in the given SOFAST HDF file and given
focal length to create a reference Facet
@@ -38,7 +38,7 @@ def load_ideal_mirror_from_hdf(file: str, focal_length: float) -> MirrorParametr
return MirrorParametric.generate_symmetric_paraboloid(focal_length, region_facet)


def load_mirror_from_hdf(file: str) -> MirrorPoint:
def load_mirror(file: str) -> MirrorPoint:
"""Loads Sofast data of a single facet data collection into
a Facet object.

0 comments on commit 7885ea7

Please sign in to comment.