-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
POEM 101: Input checking utility #203
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Andrew Lamkin <lamkina@umich.edu>
Signed-off-by: Andrew Lamkin <lamkina@umich.edu>
Thanks for the suggestion! I'm trying to think of a way we might be able to achieve the desired result by logging calls to set_val or set_input_defaults. Perhaps rather than |
I agree that a more fine-grained logging would be useful. Keeping the logging calls related to the syntax and line/file seems reasonable and would point the user directly to the location in the code. |
I have a notional implementation of this at my branch here: https://github.com/robfalck/OpenMDAO/tree/set_val_tracking This adds a new metadata entry to variables,
Currently this information is only available in the inputs report, but we can extend this to So give this branch a shot and see if the info in |
Hi Rob, I was looking forward to trying out this feature as the POEM was inspired by an issue I was having. I found a great opportunity to try it out on a coupled Dymos-OAS problem where I connect the roll moment(CMx) output by OAS to the Dymos dynamics model. Note that I've put all my OAS instances inside a component as an OpenMDAO sub-problem. In my N2 diagram I noticed that my CMx outputs from OAS were not connected causing my optimization to fail as the dynamics model always saw a CMx of 1. While I knew where the issue was I tried using your branch to see if I could use it to match my initial diagnosis. Unfortunately, generating the reports threw an error and I actually do not think it has much to do with this POEM but rather how I have my control variable(delta) connected to OAS appears to have broken the report writing logic in OpenMDAO. I've done some debugging and I have a good idea on why this is the case. I'll go ahead and explain it here and maybe we can move it to an issue later. I've developed a framework to enable multi-section wing morphing in OAS. In this simple test case however I'm just using it on a simple rectangular wing with two sections that are being deflected in opposite directions using a single twist B-spline control point on each section to emulate aileron-type control. As result my control input delta is transformed from a length 80 vector to a (80,2) size array(this is done by separate unrelated component I've made). Each row of this (80,2) matrix is connected to it's corresponding instance of OAS and each column is connected to it's corresponding section. As seen in the screenshot above the twist B-spline components in the OAS instances take a (1,1) array as input and this value is sliced out of the (80,2) array. This approach has been tested and I've been able to successfully converge several couple Dymos-OAS optimization problems using it. The issue however comes when the user tries to write reports or N2 diagrams. N2 diagrams works but always spam the users console with the following warning.
I didn't think much of this at first as the N2 diagram was still being generated successfully. However, when I first turned on reports so I could test this POEM out OpenMDAO being throwing this error.
This looks similar to the warning seen before in the N2 diagram. I ran the debugger and the issue was indeed in the _get_input_from_src function inside /openmdao/core/system.py and occurs with the "delta" variable I explained earlier. My apologies for the code screenshot but I wanted to get the debugger output in there to make the issue clear. The issue occurs when the shape of the input is (1,1) as I showed earlier but when you slice the array to get val the output is a float. You can't assign the shape (1,1) to float so we get an error. I am happy to open and issue for this or to make a PR to fix it but I wanted to consult with the OpenMDAO team first. This issue might seem pretty obscure but I think it's likely to occur anytime one tries to slice an array into a single control point B-spline which is a common input with shape (1,1). |
Thanks for the thorough report. I'll look into it |
@sabakhshi is a version of your script available for testing? |
I'm not sure right now under which circumstances that val will show up as a numpy.generic.
I've put this small change onto a branch https://github.com/robfalck/OpenMDAO/pull/new/n2_np_generic_issue If you merge that in on top of my set_val_tracking branch, I'd like to see if it resolves the issue. |
Hi Rob, Thanks for looking into this. I am using Numpy 1.26.4 Unfortunately, I can't share the script I am experiencing this issue with. However, I can report that your fix did allow me to generate reports without any errors so thank you for providing that. However, the warnings regarding the N2 diagram still continue to appear suggesting that it might be an unrelated issue? Regardless, I'll look into providing a script that can reproduce this issue for you. Thanks |
Thanks. Appreciate the thoroughness of the report :) |
One thing that could also help me get this fixed is to replace the issue_warning at n2_viewer.py with a bare Also, I pushed up some more changes to that branch that hopefully squashed the errors that the n2 diagram was hitting. |
Add an input checking tool to help debug how inputs are being set for complicated models.