MCP HubMCP Hub
스킬 목록으로 돌아가기

evaluate-levitation-mechanism

pjt222
업데이트됨 2 days ago
2 조회
17
2
17
GitHub에서 보기
기타ai

정보

이 스킬은 주어진 애플리케이션에 대해 다양한 부상 방식을 구조적으로 평가하고 비교하는 트레이드 스터디를 수행합니다. 자기, 음향, 공기역학, 정전기 방식을 다루며, 개발자가 운송, 베어링, 정밀 측정 등의 용도에 최적의 접근법을 선택할 수 있도록 돕습니다. 특정 요구사항에 기반해 부상 기술을 체계적으로 선택해야 할 때 사용하세요.

빠른 설치

Claude Code

추천
기본
npx skills add pjt222/agent-almanac -a claude-code
플러그인 명령대체
/plugin add https://github.com/pjt222/agent-almanac
Git 클론대체
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/evaluate-levitation-mechanism

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Evaluate Levitation Mechanism

Pick best levitation mechanism for specific app: set rules, screen candidates vs hard limits, score survivors on soft criteria, log pick in repeatable trade study matrix.

When Use

  • Pick levitation way for new product or experiment
  • Compare magnetic, acoustic, aero, electrostatic options for contactless handling system
  • Back design pick in tech review or proposal
  • Re-eval old levitation system when rules shift (e.g., new payload, env, or cost target)
  • Do feasibility study before commit to detail design

Inputs

  • Required: App description (what gets floated, why contactless hold needed)
  • Required: Payload props (mass range, material, shape, temp sensitivity)
  • Required: Op env (temp range, air, cleanliness, vibration)
  • Optional: Power budget (watts open)
  • Optional: Cost target (prototype and production)
  • Optional: Precision rules (position accuracy, stiffness, vibration block)
  • Optional: Life and upkeep limits

Steps

Step 1: Define Application Requirements

Set full rules before check any mechanism:

  1. Payload spec: Mass (range min to max), size, material, magnetic props (ferro? conductive? diamagnetic?), temp limits (can it take cryo? heat?), surface sensitivity (does contact cause taint or damage?).
  2. Perf rules: Levitation gap (mm to m), load cap, position accuracy, stiffness (N/m), damping, dynamic range (static hold vs controlled motion).
  3. Env limits: Temp range of op env, atm mix (air, vacuum, inert gas, liquid), cleanliness class (semi fab, bio, industrial), acoustic noise caps, EMC rules.
  4. Op limits: Open power, physical envelope (size and weight of levitation system itself), upkeep gap, life, operator skill.
  5. Econ limits: Prototype cost, production unit cost, dev timeline.
## Requirements Summary
| Category | Requirement | Value | Priority |
|----------|------------|-------|----------|
| Payload mass | Range | [min - max] kg | Must have |
| Payload material | Magnetic class | [ferro/para/dia/non-magnetic] | Must have |
| Gap | Levitation height | [value] mm | Must have |
| Precision | Position accuracy | [value] um | Want |
| Temperature | Operating range | [min - max] C | Must have |
| Power | Budget | [value] W | Want |
| Cost | Unit cost target | [value] | Want |
| Environment | Cleanliness | [class or none] | Must have |
| Noise | Acoustic limit | [value] dB | Want |
| EMC | Field emission limit | [value or none] | Want |

Got: Rules table with each rule marked "Must have" (hard limit, pass/fail) or "Want" (soft, scored on scale). At least 5 rules set.

If fail: App too vague to set count rules? Talk to stakeholder or do edge check: set loosest OK range for each param. Going without set rules give arbitrary or biased trade study.

Step 2: Catalog Candidate Mechanisms

List levitation mechanisms to check, with op rules and base limits:

  1. Passive diamagnetic levitation: Uses diamagnetic pull of floated thing (or diamagnetic stabilizer) in permanent magnet field. No power. Only small payloads (milligrams to grams) with strong diamagnetic materials (pyrolytic graphite, bismuth). Works at room temp.

  2. Active electromagnetic feedback: Electromagnets with position sensors and real-time controller. Handles payloads from grams to hundreds of tonnes (maglev trains). Needs continuous power and control system. For ferro and conductive payloads.

  3. Superconducting levitation: Type-II superconductors with flux pinning give passive, powerless levitation with built-in stability. Needs cryo cool (liquid nitrogen for YBCO at 77 K, liquid helium for classic superconductors). Payload limit by superconductor size and critical current. Very stiff.

  4. Acoustic standing wave: Ultrasonic transducers make pressure nodes that trap small things. Payload under wavelength (typically < 5 mm in air at 40 kHz). Needs continuous drive power. Works with any material no matter magnetic or electric props. Makes audible harmonics and acoustic streaming.

  5. Acoustic phased array: Extension of standing wave levitation using many independent transducers. Does 3D move and reposition. More complex and costly but much more flex.

  6. Aerodynamic (air bearings): Thin film of pressurized air holds thing. Used in precision stages, air hockey tables, hovercraft. Needs continuous air supply. Very low friction. Gap usually 5-25 micrometers for precision bearings, bigger for hovercraft.

  7. Aerodynamic (Coanda/Bernoulli): Jet of air over curved surface makes low-pressure zone that holds thing. Simple and cheap. Low precision and stiffness. Used in demos and some industrial handling.

  8. Electrostatic (Coulomb): Charged electrodes hold charged or dielectric thing. Very low force (micronewtons to millinewtons) but works in vacuum. Used in space (gravity wave detectors, inertial sensors) and MEMS.

  9. Electrostatic (ion trap): Shifting electric fields (Paul trap) or mix static and magnetic fields (Penning trap) hold charged particles. Used for single ions to nanoparticles. Mostly lab technique for atomic physics and mass spec.

## Candidate Mechanisms
| # | Mechanism | Payload Range | Power | Temperature | Any Material? |
|---|-----------|--------------|-------|-------------|--------------|
| 1 | Passive diamagnetic | mg - g | None | Room temp | No (diamagnetic only) |
| 2 | Active EM feedback | g - 100+ t | Continuous | Room temp | No (ferro/conductive) |
| 3 | Superconducting | g - kg | Cryocooler | < 77 K | No (above SC) |
| 4 | Acoustic standing wave | ug - g | Continuous | Room temp | Yes |
| 5 | Acoustic phased array | ug - g | Continuous | Room temp | Yes |
| 6 | Air bearing | g - t | Air supply | Room temp | Yes |
| 7 | Coanda/Bernoulli | g - kg | Air supply | Room temp | Yes |
| 8 | Electrostatic Coulomb | ug - mg | Minimal | Any (vacuum ok) | No (charged/dielectric) |
| 9 | Ion trap | atoms - ug | RF power | Any (vacuum) | No (ions only) |

Got: List of all physically plausible mechanisms with base traits summed. At least 4 mechanisms across at least 2 different physics rules.

If fail: Mechanism base limits unsure? Check lit or use related skills (analyze-magnetic-levitation, design-acoustic-levitation) to set them before go to screen. Do not screen on guess.

Step 3: Screen Against Hard Constraints

Kill mechanisms that fail any "Must have" rule:

  1. Apply each hard limit as pass/fail filter: For every mechanism in list, check each "Must have" rule. One fail kills mechanism.
  2. Common screen picks:
    • Mass range: Payload past mechanism base mass limit? Kill it (e.g., acoustic levitation can't handle kilogram payloads).
    • Material fit: Payload non-magnetic and mechanism needs magnetic material? Kill it (e.g., passive diamagnetic levitation of ferromagnetic thing not possible).
    • Temperature: Cryo not doable in op env? Kill superconducting levitation.
    • Vacuum/atm: Env is vacuum? Kill aerodynamic. EMC needs no magnetic fields? Kill magnetic mechanisms.
    • Contact: Air bearings need near flat surface (quasi-contact). True non-contact needed? Kill them.
  3. Log kills with reasons: Log why each killed mechanism fails, so pick can be redone if rules change.
## Screening Results
| # | Mechanism | Pass/Fail | Eliminating Constraint | Reason |
|---|-----------|-----------|----------------------|--------|
| 1 | Passive diamagnetic | [P/F] | [constraint or N/A] | [reason] |
| 2 | Active EM feedback | [P/F] | [constraint or N/A] | [reason] |
| ... | ... | ... | ... | ... |

Got: Shorter list of candidate mechanisms, each passed all hard limits. At least one mechanism lives; ideally 2-4 stay for score.

If fail: No mechanism passes all hard limits? Rules clash. Loosen least key "Must have" (reclass as "Want") and re-screen. Many rules must loosen? App may need mixed way with two mechanisms (e.g., magnetic main force with aero stabilize).

Step 4: Score on Soft Criteria

Rank surviving mechanisms with weighted score matrix:

  1. Set score picks and weights: Turn each "Want" rule into score pick. Give weights by how key (e.g., 1-5 scale, or percent weights summing to 100%). Common picks:
    • Cost (prototype and unit): weight by econ sensitivity
    • Complexity: count of parts, control electronics, alignment key
    • Precision: position accuracy, stiffness, vibration block quality
    • Power use: op watts, standby watts
    • Scalability: can handle range of payloads or be made in quantity
    • Controllability: ease of tune gap, position, or stiffness on fly
    • Maturity: tech readiness level, open commercial parts
    • Noise: acoustic, EM, or vibration out
  2. Score each mechanism: Rate each surviving mechanism on each pick with one scale (e.g., 1 = poor, 3 = OK, 5 = excellent). Base scores on count data from Steps 1-3 where can, not on feel.
  3. Compute weighted scores: For each mechanism, multiply each pick score by weight and sum. Mechanism with highest weighted score is top candidate.
  4. Sensitivity check: Vary top 2-3 weights by +/- 20% and check if rank changes. If rank is sensitive to weight picks, flag this and show alternatives to decision maker.
## Scoring Matrix
| Criterion | Weight | Mech A | Mech B | Mech C |
|-----------|--------|--------|--------|--------|
| Cost | [w1] | [s1A] | [s1B] | [s1C] |
| Complexity | [w2] | [s2A] | [s2B] | [s2C] |
| Precision | [w3] | [s3A] | [s3B] | [s3C] |
| Power | [w4] | [s4A] | [s4B] | [s4C] |
| Scalability | [w5] | [s5A] | [s5B] | [s5C] |
| Controllability | [w6] | [s6A] | [s6B] | [s6C] |
| Maturity | [w7] | [s7A] | [s7B] | [s7C] |
| **Weighted Total** | | **[T_A]** | **[T_B]** | **[T_C]** |
| **Rank** | | [rank] | [rank] | [rank] |

Got: Full score matrix with all picks weighted and all mechanisms scored. Clear rank shows up with top candidate named. Sensitivity check confirms rank robust (or logs where fragile).

If fail: Two mechanisms score within 10% of each other? Pick too close to call on paper. Advise prototype both and pick by experiment perf, or spot a split test that would break tie.

Step 5: Document Recommendation and Trade Study

Make final trade study report:

  1. Pick: State picked mechanism with one-para reason that ref scoring and key split picks.
  2. Runner-up: Name second-place mechanism and say under what shifted conds it would become preferred (this is fallback plan).
  3. Killed mechanisms: Briefly list killed mechanisms and their fail limits for full record.
  4. Risks and mitigations: For picked mechanism, name top 3 tech risks and advised mitigations.
  5. Next steps: State what detail design work needed (ref right analysis skill: analyze-magnetic-levitation for magnetic, design-acoustic-levitation for acoustic, etc.).
## Trade Study Summary

### Recommendation
**[Mechanism name]** is recommended for [application] because [2-3 sentence justification
referencing the key scoring advantages].

### Runner-Up
**[Mechanism name]** would be preferred if [condition changes, e.g., "cryogenics become
available" or "payload mass decreases below X grams"].

### Eliminated Mechanisms
- [Mechanism]: eliminated by [constraint]
- [Mechanism]: eliminated by [constraint]

### Risks
| Risk | Impact | Likelihood | Mitigation |
|------|--------|-----------|------------|
| [Risk 1] | [H/M/L] | [H/M/L] | [action] |
| [Risk 2] | [H/M/L] | [H/M/L] | [action] |
| [Risk 3] | [H/M/L] | [H/M/L] | [action] |

### Next Steps
1. [Detailed analysis using specific skill]
2. [Prototype or simulation task]
3. [Experimental validation milestone]

Got: Self-contained trade study doc another engineer can review, challenge, act on. Pick traces to rules and scores, not unstated preferences.

If fail: Pick can't be backed by scoring alone (e.g., top-score mechanism has known showstopper picks didn't catch)? Go back to Step 1 to add missing rule. Do not override score with no logged reason.

Validation

  • App rules set with count values and priority class
  • At least 4 levitation mechanisms across 2+ physics rules listed
  • Hard limit screen applied same way with kills logged
  • At least 2 mechanisms live through screen for useful compare
  • Score picks have clear weights and all scores backed
  • Sensitivity check done on top 2-3 weight factors
  • Pick has reason that traces to score matrix
  • Runner-up and fallback cond logged
  • Risks and mitigations named for picked mechanism
  • Trade study full enough for outside reviewer to check

Pitfalls

  • Anchor on preferred mechanism before trade study: Start with conclusion and reverse-engineer rules or weights to back it. Cure: set rules and weights before check any mechanism. Already know which mechanism you want? Trade study is check, not pick -- be honest.
  • Skip mechanisms from unknown domains: Magnetic-background engineers miss acoustic options and reverse. Always add at least one mechanism from each of four big families (magnetic, acoustic, aero, electrostatic) in first list, even if most get screened out.
  • Mix hard and soft limits: Treat a preference as hard limit kills viable options early. Only truly non-negotiable rules (safety, physics limits, regulatory) should be hard limits. Everything else should be scored.
  • Equal weight by default: Giving all picks same weight is a pick -- it says all picks are equally key. Stakeholders should rank clear. If they refuse, use pairwise compare (AHP) to draw hidden weights.
  • Ignore system-level mix: Levitation mechanism not alone. Acoustic levitation makes noise that may hit nearby instruments. Active magnetic levitation emits time-varying fields that may break EMC rules. Superconducting levitation needs cryo infra. Check mechanism in its system context.
  • Single-point score with no uncertainty: Rate mechanism as "4" on cost implies false precision. If can, express scores as ranges (e.g., "3-5") and pass uncertainty to final rank. If two mechanisms overlap in score ranges, rank not final.

See Also

  • analyze-magnetic-levitation -- detail analysis when magnetic levitation is picked or candidate mechanism
  • design-acoustic-levitation -- detail design when acoustic levitation picked
  • analyze-magnetic-field -- compute magnetic field profiles needed for magnetic levitation check
  • argumentation -- structured reason and pick-back methods for trade study

GitHub 저장소

pjt222/agent-almanac
경로: i18n/caveman/skills/evaluate-levitation-mechanism
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

연관 스킬

llamaguard

기타

LlamaGuard는 폭력 및 혐오 발언 등 6가지 안전 범주에서 LLM 입력과 출력을 조정하기 위한 Meta의 70-80억 파라미터 모델입니다. 94-95% 정확도를 제공하며 vLLM, Hugging Face 또는 Amazon SageMaker를 사용해 배포할 수 있습니다. 이 기술을 사용하여 AI 애플리케이션에 콘텐츠 필터링 및 안전 가드레일을 손쉽게 통합하세요.

스킬 보기

cost-optimization

기타

이 Claude Skill은 리소스 적정화, 태깅 전략, 지출 분석을 통해 개발자들이 클라우드 비용을 최적화할 수 있도록 지원합니다. AWS, Azure, GCP에서 클라우드 비용을 절감하고 비용 거버넌스를 구현하기 위한 프레임워크를 제공합니다. 인프라 비용을 분석하거나, 리소스를 적정화하거나, 예산 제약을 충족해야 할 때 사용하세요.

스킬 보기

quantizing-models-bitsandbytes

기타

이 스킬은 bitsandbytes를 사용하여 LLM을 8비트 또는 4비트 정밀도로 양자화하며, 최소한의 정확도 손실로 50-75%의 메모리 감소를 달성합니다. 제한된 GPU 메모리에서 더 큰 모델을 실행하거나 추론을 가속화하는 데 이상적이며, INT8, NF4, FP4와 같은 형식을 지원합니다. 이 스킬은 HuggingFace Transformers와 통합되어 QLoRA 학습 및 8비트 옵티마이저를 가능하게 합니다.

스킬 보기

dispatching-parallel-agents

기타

이 Claude Skill은 3개 이상의 독립적인 문제를 동시에 조사하고 해결하기 위해 다중 에이전트를 배치합니다. 공유 상태나 의존성 없이 해결 가능한 무관련 장애 시나리오에 맞게 설계되었습니다. 핵심 기능은 병렬 문제 해결로, 각 독립 문제 영역마다 하나의 에이전트를 할당하여 효율성을 극대화합니다.

스킬 보기