Results 17 comments of Edward Geist

I know it's frustrating, but this is the intended behavior. The `r_soviet_overpressure` function is based upon digitized data from a chart in a 1987 Soviet military nuclear weapons effects manual....

How are you selecting heights-of-burst? Are you aiming to select an "optimal" HOB for each blast ring, and if so for what burst yields and detonation conditions (thermal precursors etc.)?...

So I've checked and the [`fixed_point` function in `scipy.optimize`](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.fixed_point.html) should do what you need, e.g.: ``` optimize.fixed_point(lambda r: brode_overpressure(teters_yield, r, teters_height, opunits='psi'), desired_overpressure) ```

I believe you're correct, so please submit a pull request and I'll merge it. To be honest I deemphasized this part of the library because I'm not entirely confident that...

Sure, I'm definitely open to merge requests. What do you have in mind?

I know the code isn't pretty--this was the first non-trivial project I wrote in Python and I never got around to polishing it like I meant to. I'd definitely welcome...

Sounds good. Here are a few titles that you might ask the arms control community for: Iu. A. Izrael, Radioactive Fallout after Nuclear Explosions and Accidents (Elsevier, 2002). Charles E....

Issues arising from tagged ObjC instances were my first guess too, and I concur that the parts of the bridge that deal with them need to be updated to address...

The issues you're reporting seem to be somewhat different from mine--probably because I was using experimental Cocoa headers generated from the 10.14 SDK using ffigen5. If you're so inclined, I'd...

Any further progress on this?