Skip to content

Commit

Permalink
🐛 Experiment with changed reflectivity calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
BenWinchester committed Apr 25, 2024
1 parent 100ff67 commit 53980f7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/pvt_model/pvt_system/pvt_collector/__utils__.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ def reflectivity(self) -> float:
"""

# FIXME: I'm not convinced that this calculation is correct...

return 1 - self.absorptivity - self.transmissivity

return sqrt(1 - self.absorptivity**2 - self.transmissivity**2)

@property
Expand Down

0 comments on commit 53980f7

Please sign in to comment.