⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 closeoutfiles.f90

📁 动力学计算程序
💻 F90
字号:
subroutine CloseOutFiles()
! Purpose: close output files
	use module_ioport
	use module_parameter
	implicit none
	integer i

	if(Disp_flag) then
		do i=1,n_Disp_dof
			close(unit=oport_disp(i))
		end do
	endif
		
	if(Velo_flag)   then
		do i=1,n_Velo_dof
			close(unit=oport_velo(i))
		end do
	endif

	if(Acce_flag)	then
		do i=1,n_Acce_dof
			close(unit=oport_acce(i))
		end do
	endif

end subroutine CloseOutFiles

⌨️ 快捷键说明

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