Agent skill
diffraction-analysis-workflow-1-aqwa-analysis-only
Sub-skill of diffraction-analysis: Workflow 1: AQWA Analysis Only (+4).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/engineering/marine-offshore/diffraction-analysis/workflow-1-aqwa-analysis-only
SKILL.md
Workflow 1: AQWA Analysis Only (+4)
Workflow 1: AQWA Analysis Only
from digitalmodel.aqwa import AQWAAnalysis
# Direct AQWA analysis
analysis = AQWAAnalysis(folder="aqwa_results/")
analysis.run()
Workflow 2: AQWA → OrcaFlex Conversion
from digitalmodel.bemrosetta import (
AQWAParser, OrcaFlexConverter, validate_coefficients
)
# Parse AQWA
parser = AQWAParser()
results = parser.parse("analysis.LIS")
# Validate
*See sub-skills for full details.*
## Workflow 3: OrcaWave Analysis
```python
from digitalmodel.orcawave import OrcaWaveAnalysis
# Run OrcaWave (requires OrcFxAPI)
analysis = OrcaWaveAnalysis()
analysis.setup_model(vessel_file="vessel.yml")
analysis.run_diffraction()
results = analysis.get_results()
Workflow 4: AQWA vs OrcaWave Comparison
from digitalmodel.diffraction import (
DiffractionComparator,
AQWAConverter,
OrcaWaveConverter,
)
# Convert both sources to unified schema
aqwa_results = AQWAConverter("aqwa_folder/").convert_to_unified_schema()
orcawave_results = OrcaWaveConverter(model).convert_to_unified_schema()
*See sub-skills for full details.*
## Workflow 5: Complete Pipeline with QTF
```python
from digitalmodel.bemrosetta import (
AQWAParser, QTFParser, OrcaFlexConverter,
CoefficientValidator, CausalityChecker,
)
# Parse main results
parser = AQWAParser()
results = parser.parse("analysis.LIS")
*See sub-skills for full details.*
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?