dlat_to_dvol Function

public function dlat_to_dvol(lattice) result(vol)

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in) :: lattice(3,3)

Return Value real(kind=wp)


Source Code

function dlat_to_dvol(lattice) result(vol)
   real(wp), intent(in) :: lattice(3, 3)
   real(wp) :: vol
   vol = matdet_3x3(lattice)
end function dlat_to_dvol