bugfix: parallel model phase converted now to radians
This commit is contained in:
@ -2,7 +2,8 @@ import numpy as np
|
||||
from scipy.optimize import fsolve
|
||||
|
||||
|
||||
def parallel2gap(K, phi, undudict):
|
||||
def parallel2gap(K, phi_in_degree, undudict):
|
||||
phi = math.radians(phi_in_degree)
|
||||
gLH = K2gap(K, undudict['K-value_LH'])
|
||||
if phi >= 0.0:
|
||||
gLV = K2gap(K, undudict['K-value_LV+'])
|
||||
|
Reference in New Issue
Block a user