You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
review method/property names and API calling sequences for potential Pythonicity improvements (or consistency improvements as in the case of diameters methods vs. dry_diamaters property)
#216
Open
slayoo opened this issue
May 17, 2023
· 3 comments
slayoo
changed the title
review method/property names and API calling sequences for potential Pythonicity improvements
review method/property names and API calling sequences for potential Pythonicity improvements (or consistency improvements as in the case of diameters methods vs. dry_diamaters property)
May 21, 2024
Examples to consider:
aero_particle.set_vols([3, 2, 1])
->aero_particle.vols = [3,2,1]
aero_particle.zero()
->aero_particle = 0
aero_particle.approx_crit_rel_humid(env_state)
->aero_particle.crit_rel_humid(env_state, approx=True)
The text was updated successfully, but these errors were encountered: