Skip to content

Commit

Permalink
Fixed reference to slope_solver and slope_solver_data in SofastConfig…
Browse files Browse the repository at this point in the history
…uration class.
  • Loading branch information
braden6521 committed Aug 22, 2024
1 parent 9e3afdd commit b71822b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions opencsp/app/sofast/lib/SofastConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ def get_measurement_stats(self) -> list[dict]:
num_samps = len(data_calc.v_surf_points_facet)
else:
# Get data
data_surf = self.data_sofast_object.slope_solver[idx_facet].surface
data_calc = self.data_sofast_object.data_slope_solver[idx_facet]
data_surf = self.data_sofast_object.slope_solvers[idx_facet].surface
data_calc = self.data_sofast_object.data_calculation_facet[idx_facet]
# Sample resolution
surf_points = self.data_sofast_object.data_slope_solver[idx_facet].v_surf_points_facet
surf_points = self.data_sofast_object.data_calculation_facet[idx_facet].v_surf_points_facet
pts_index_xy = self.data_sofast_object.blob_index.get_data()[1]
point_indices_mat = self.data_sofast_object.blob_index.get_data_mat()[1]
offset_x = self.data_sofast_object.blob_index._offset_x
Expand Down

0 comments on commit b71822b

Please sign in to comment.