Analyze the ${SRC_DIR}/${module_name}.h and ${SRC_DIR}/${module_name}.cpp files in the orbital mechanics simulation project. Create a concise but comprehensive summary of all interface elements (functions, structs, enums, constants, defines) that would be useful for a new agent session to quickly understand this module's API. Output format: ## Path /full/file/path ## Structs, Constants, Enums, Defines ```cpp // Brief description of the struct struct { ; // Field purpose }; // comments (if needed) static const = ; // or inline (if needed) ``` ## Functions ### ```cpp // Brief description of what the function does, (include details for complex algorithms) ( , // brief description // brief description ); ``` Keep summaries concise but do not oversimplify complex algorithms - include enough detail to understand the logic and approach. Focus on public interfaces, not internal implementation details. IMPORTANT: write output to one file: ${SUMMARY_DIR}/${module_name}.summary.md