boundary.f90

来自「求解粘性Burger方程和非粘性Burger方程的各种差分格式」· F90 代码 · 共 12 行

F90
12
字号
!===========================================================================
function bounLeft(time)
! Function on the left boundary
	real bounLeft
	bounLeft=0
end function bounLeft
!==========================================================================
function bounRight(time)
! Function on the right boundary
	real bounRight
	bounRight=0
end function bounRight

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?