Skip to content

Commit

Permalink
Correction of closure phase!
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavbroz committed Nov 4, 2024
1 parent 33f5bcf commit 7e935f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phoebe/backend/interferometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def clo(b, system, ucoord1=None, vcoord1=None, ucoord2=None, vcoord2=None, wavel

j = info['original_index']
u = [ucoord1[j], ucoord2[j], -(ucoord2[j]+ucoord1[j])] # m
v = [vcoord1[j], vcoord2[j], -(vcoord2[j]+ucoord1[j])] # m
v = [vcoord1[j], vcoord2[j], -(vcoord2[j]+vcoord1[j])] # m

info_ = {'dataset': info['dataset'], 'component': info['component'], 'original_index': 0}

Expand Down

0 comments on commit 7e935f5

Please sign in to comment.