Skip to content

Commit

Permalink
Added units to new docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
braden6521 committed Dec 13, 2024
1 parent c2788fc commit f26cde1
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions opencsp/app/sofast/lib/ParamsOpticGeometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ class ParamsOpticGeometry(hdf5_tools.HDF5_IO_Abstract):
"""Parameter dataclass for processing optic geometry"""

perimeter_refine_axial_search_dist: float = 50.0
"""The length of the search box (along the search direction) to use when finding optic perimeter. Default 50.0"""
"""The length of the search box (along the search direction) to use when finding optic
perimeter. Units pixels. Default 50.0"""
perimeter_refine_perpendicular_search_dist: float = 50.0
"""The half-width of the search box (perpendicular to the search direction) to use when finding optic perimeter. Default 50.0"""
"""The half-width of the search box (perpendicular to the search direction) to use when finding
optic perimeter. Units pixels. Default 50.0"""
facet_corns_refine_step_length: float = 10.0
"""The length of the search box (along the search direction) to use when refining facet corner locations (when processing a facet ensemble). Default 10.0"""
"""The length of the search box (along the search direction) to use when refining facet corner
locations (when processing a facet ensemble). Units pixels. Default 10.0"""
facet_corns_refine_perpendicular_search_dist: float = 10.0
"""The half-width of the search box (perpendicular to the search direction) to use when refining facet corner locations (when processing a facet ensemble). Default 10.0"""
"""The half-width of the search box (perpendicular to the search direction) to use when
refining facet corner locations (when processing a facet ensemble). Units pixels. Default 10.0"""
facet_corns_refine_frac_keep: float = 0.5
"""The fraction of pixels to consider within search box when finding optic edges. Default 0.5"""

Expand Down

0 comments on commit f26cde1

Please sign in to comment.