Add Smooth Orthogonal Decomposition (SOD) implementation#141
Closed
ChrisRackauckas-Claude wants to merge 1 commit intoSciML:mainfrom
Closed
Add Smooth Orthogonal Decomposition (SOD) implementation#141ChrisRackauckas-Claude wants to merge 1 commit intoSciML:mainfrom
ChrisRackauckas-Claude wants to merge 1 commit intoSciML:mainfrom
Conversation
Implements the Smooth Orthogonal Decomposition (SOD) algorithm for extracting linear normal modes and natural frequencies from time-series data, as proposed by Chelidze and Zhou (2006). SOD extends POD by considering temporal smoothness in addition to spatial variance. It uses the covariance matrices of displacement and velocity responses to form a generalized eigenvalue problem (Σ_xx Ψ = λ Σ_vv Ψ), which yields smooth orthogonal modes and values without requiring knowledge of the system's mass matrix. Key features: - SOD type following the same pattern as POD - Automatic velocity computation from displacement data using finite differences - Support for user-provided velocity data - Energy-based truncation for automatic mode selection - Natural frequency estimation from smooth orthogonal values (SOVs) - Support for both matrix and vector-of-vectors input formats References: - Chelidze D, Zhou W. Smooth orthogonal decomposition-based vibration mode identification. J Sound Vib. 2006; 292(3-5): 461-473. Closes SciML#9 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Key Features
SODtype following the same pattern as existingPODTest plan
References
Closes #9
cc @ChrisRackauckas
🤖 Generated with Claude Code