-
Notifications
You must be signed in to change notification settings - Fork 127
Description
Hello,
When i run the tilting pad bearing example and I use the determine_eccentricity function, with the load below (884 N in x-direction and -2670 N in y-direction) and remove the eccentricity and attitude angle i get follow results for the pad forces in x and y-direction.
X = [-7.28544297e+02 2.76706082e-01 7.28851243e+02 1.16683225e+03 -1.16902545e+03]
Y = [-237.51226667 -456.52528266 -236.56528483 1607.61184037 1606.01794477]
When I make the sum of the forces in Y-direction I come to a value of 2283 N. For the X-direction the sum equals to approximately zero. Is there a reason why we see this deviation in values between bearing forces and external load?
bearing = TiltingPad(
n=1,
frequency=Q_([3000], "RPM"),
equilibrium_type="match_eccentricity",
model_type="thermo_hydro_dynamic",
journal_diameter=101.6e-3,
radial_clearance=74.9e-6,
pad_thickness=12.7e-3,
pivot_angle=Q_([18, 90, 162, 234, 306], "deg"),
pad_arc=Q_([60, 60, 60, 60, 60], "deg"),
pad_axial_length=Q_([50.8e-3, 50.8e-3, 50.8e-3, 50.8e-3, 50.8e-3], "m"),
pre_load=[0.5, 0.5, 0.5, 0.5, 0.5],
offset=[0.5, 0.5, 0.5, 0.5, 0.5],
lubricant="ISOVG32",
oil_supply_temperature=Q_(40, "degC"),
nx=30,
nz=30,
eccentricity=0.35,
attitude_angle=Q_(287.5, "deg"),
load=[8.8405e02, -2.6704e03],
)