OpenMDAO1 icon indicating copy to clipboard operation
OpenMDAO1 copied to clipboard

Partial derivative check fails after total derivative check

Open pilotmm opened this issue 10 years ago • 0 comments

Take the paraboloid example and append this to the end. The check will fail on the partial derivatives. However, if you run it again (un-comment the 3rd line) it will succeed. So it seems that the checks leave the problem in an altered state.

    check_total=top.check_total_derivatives()
    print(check_total)
#    top.run()
    check_partial=top.check_partial_derivatives()
    print(check_partial)

pilotmm avatar Feb 17 '16 09:02 pilotmm