Skip to content
Snippets Groups Projects
sfx_compute_sheba.cuh 702 B
Newer Older
  • Learn to ignore specific revisions
  • 数学の武士's avatar
    .
    数学の武士 committed
    #pragma once 
    
    template<typename T>
    void compute_flux_sheba_gpu(T *zeta_, T *Rib_, T *Re_, T *B_, T *z0_m_, T *z0_t_, T *Rib_conv_lim_, T *Cm_, T *Ct_, T *Km_, T *Pr_t_inv_,
        const T *U_, const T *dT_, const T *Tsemi_, const T *dQ_, const T *h_, const T *in_z0_m_,
        const T kappa, const T Pr_t_0_inv,
        const T alpha_m, const T alpha_h, 
        const T a_m, const T a_h, 
        const T b_m, const T b_h,
        const T c_h,
        const T Re_rough_min, 
        const T B1_rough, const T B2_rough,
        const T B_max_land, const T B_max_ocean, const T B_max_lake,
        const T gamma_c, const T Re_visc_min,
        const T Pr_m, const T nu_air, const T g, 
        const int maxiters_charnock,
        const int grid_size);