Sub-skill of orcawave-qtf-analysis: When to Use Full QTF vs Newman (+2).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill when-to-use-full-qtf-vs-newman --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of When To Use Full Qtf Vs Newman?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-when-to-use-full-qtf-vs-newman)More formats (shields.io, HTML) on the badges page.
---
name: orcawave-qtf-analysis-when-to-use-full-qtf-vs-newman
description: 'Sub-skill of orcawave-qtf-analysis: When to Use Full QTF vs Newman (+2).'
version: 1.0.0
category: engineering
type: reference
scripts_exempt: true
---
# When to Use Full QTF vs Newman (+2)
## When to Use Full QTF vs Newman
| Scenario | Recommendation |
|----------|----------------|
| Initial design | Newman approximation |
| Mooring design | Full QTF |
| Shallow water (d < 100m) | Full QTF required |
| Deep water (d > 300m) | Newman often sufficient |
| Bi-directional seas | Full QTF |
| Long-crested seas | Newman acceptable |
| SPM/turret systems | Full QTF |
## Computational Considerations
1. **Frequency Resolution**: Use 20-30 frequencies minimum for accurate QTF
2. **Heading Pairs**: Exploit symmetry to reduce computation
3. **Memory**: Full QTF matrices can be large; consider frequency range
4. **Validation**: Compare Newman vs Full for at least one condition
5. **Mesh Quality**: QTF more sensitive to mesh than first-order
## Integration with Mooring Analysis
```python
from digitalmodel.orcawave.qtf import QTFMooringIntegration
# Prepare QTF for mooring analysis
integration = QTFMooringIntegration()
# Load QTF results
integration.load_qtf("results/qtf/fpso_full.yml")
# Convert to mooring analysis format
integration.export_for_mooring_analysis(
output_file="mooring/qtf_loading.yml",
format="OrcaFlex",
include_mean_drift=True,
include_slow_drift=True,
sea_state={
"hs": 4.0,
"tp": 10.0,
"gamma": 3.3
}
)
```
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!