I want to add the cold-ammonia model. The implementation of the model is simply
dT0 = 41.18 # Energy difference between (2,2) and (1,1) in K
trot = tkin * (1 + (tkin/dT0)*np.log(1 + 0.6*np.exp(-15.7/tkin)))**-1
return ammonia(xarr, trot=trot, **kwargs)
I guess a new function AmmoniaRunner_cold() should be created, which looks almost the same as AmmoniaRunner_cold(). Anything else?
I want to add the
cold-ammoniamodel. The implementation of the model is simplyI guess a new function
AmmoniaRunner_cold()should be created, which looks almost the same asAmmoniaRunner_cold(). Anything else?