✍️ 朱邓达  •  📅 2025-09-22  •  ⚡ 2025-11-24

模块手册

以下是 C 程序 grt 的模块手册,包含模块各个选项的使用说明以及示例。

动态解

  • 全波解 (波数积分, Wavenumber Integration)

            flowchart TB
    
        GG(["greenfn"])
        SS(["syn"])
        EE(["strain"])
        RR(["rotation"])
        TT(["stress"])
    
        G["Compute Green's Functions
        (and its Spatial Derivatives)"]
        S["Compute displacements with focal mechanism
        (and its Spatial Derivatives)"]
        E["Compute Strain Tensor"]
        R["Compute Rotation Tensor"]
        T["Compute Stress Tensor"]
    
        GG --> G
        G --> SS --> S
        S --> EE --> E
        S --> RR --> R
        S --> TT --> T
    
        classDef cmdcls fill:#f9f2d9,stroke:#e8d174,stroke-width:2px,color:#333;
        class GG,SS,EE,RR,TT cmdcls
        
  • 面波解 (模态叠加, Modal Summation)

    release later.

静态解

        flowchart TB

    GG(["static_greenfn"])
    SS(["static_syn"])
    EE(["static_strain"])
    RR(["static_rotation"])
    TT(["static_stress"])

    G["Compute Green's Functions
    (and its Spatial Derivatives)"]
    S["Compute displacements with focal mechanism
    (and its Spatial Derivatives)"]
    E["Compute Strain Tensor"]
    R["Compute Rotation Tensor"]
    T["Compute Stress Tensor"]

    GG --> G
    G --> SS --> S
    S --> EE --> E
    S --> RR --> R
    S --> TT --> T

    classDef cmdcls fill:#f9f2d9,stroke:#e8d174,stroke-width:2px,color:#333;
    class GG,SS,EE,RR,TT cmdcls
    

辅助模块