OpenMDAO / dymos

Open Source Optimization of Dynamic Multidisciplinary Systems
Apache License 2.0
202 stars 65 forks source link

Dymos should no longer record inputs by default. #1015

Closed robfalck closed 9 months ago

robfalck commented 10 months ago

Proposed feature.

The automatic saving of the final case by run_problem uses a recorder attached to Problem that automatically saves both inputs and outputs.

Since the advent of auto_ivc the recording of inputs is not necessary to reconstruct the problem. Dymos should save the disk space and not record them by default.

The user can override this option with p.recording_options['record_inputs'] = True.

Example

No response