docs: restore English comment templates with Korean details for Compact and m_calculate
All checks were successful
Deploy Documentation / build-and-deploy (push) Successful in 53s

This commit is contained in:
ignis 2026-06-02 02:50:24 +00:00
parent b6697cb555
commit 7b411989d8
2 changed files with 11 additions and 8 deletions

View file

@ -1,9 +1,11 @@
!> @author Ignis !> @author Ignis
!> @brief order of accuracy를 compact finite difference scheme (generalized Padé scheme) . !> @brief High-order compact finite difference scheme (generalized Padé scheme) solver with specific order of accuracy.
!! !!
!! high-order compact . !! This module handles the generation of tridiagonal/pentadiagonal matrices,
!! Compact implicit , implicit !! LU decomposition calculations, and tridiagonal solver operations (such as stdlu, ptdlu, etc.)
!! tridiagonal matrix solver(stdlu, ptdlu ) . !! for periodic and non-periodic boundary conditions. Since compact finite difference schemes
!! are implicit, these solvers are implemented internally to perform numerical differentiation
!! by solving the implicit relations efficiently.
MODULE Compact MODULE Compact
use, intrinsic :: iso_fortran_env, only: real64 use, intrinsic :: iso_fortran_env, only: real64
IMPLICIT NONE IMPLICIT NONE

View file

@ -1,9 +1,10 @@
!> @author Google DeepMind Team & Ignis !> @author Google DeepMind Team & Ignis
!> @brief (Flow domain) x, y, z compact (Cache) . !> @brief DNS post-processing mathematical operations and derivatives, matching appropriate compact schemes in X, Y, Z directions for a defined flow domain and optimizing calculations from a cache perspective.
!! !!
!! 3 . !! This module calculates spatial derivatives (first and second spatial derivatives in X, Y, Z directions like ddx, ddy, ddz, etc.)
!! 1 2 (ddx, ddy, ddz ) , !! using high-order compact finite difference schemes. It also calculates chemical reaction rates,
!! (Cache blocking) (Transpose) (`tp2`) . !! positive/negative component extraction, and threshold operations, incorporating memory cache
!! efficiency (cache blocking) and transpose optimization operations (`tp2`).
module m_calculate module m_calculate
use, intrinsic :: iso_fortran_env, only: real64 use, intrinsic :: iso_fortran_env, only: real64