Subroutine callspecgeneration(nnode,x,y,eg,generation)

出自 DDCC TCAD TOOL Manual
於 2017年8月27日 (日) 22:46 由 Yrwu (對話 | 貢獻) 所做的修訂 (已建立頁面,內容為 " subroutine callspecgeneration(nnode,x,y,eg,generation) use nrtype ,only : dp,i4b,i8b use global2d implicit none integer(i8b), intent(in) :: nnode real(dp) , i...")

(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
前往: 導覽搜尋
subroutine callspecgeneration(nnode,x,y,eg,generation) 
use nrtype ,only : dp,i4b,i8b
use global2d
implicit none
integer(i8b), intent(in) :: nnode
real(dp) , intent(inout) :: x(nnode),y(nnode),eg(nnode),generation(nnode) 
integer :: i,j 
do i=1,nnode
   generation(i)=0.0_dp
end do
print*, "You should not call 2D-ddcc.exe  to run callspecgeneration. You should use 2D-ddcc-dyna.exe to run it."
stop
end subroutine