-
Notifications
You must be signed in to change notification settings - Fork 8
/
User_Mark.f90
36 lines (29 loc) · 1.32 KB
/
User_Mark.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
!-------------- cemfDEM code: a dem simulation code ----------------------------
! D C enter of
! D M E ngineering and
! D M M ultiscale modeling of
! D M F luid flow
! EEEEEEEEM .ir
!------------------------------------------------------------------------------
! Copyright (C): cemf
! website: www.cemf.ir
!------------------------------------------------------------------------------
! This file is part of cemfDEM code. It is a free software for simulating
! granular flow. You can redistribute it and/or modify it under the terms of
! GNU General Public License version 3 or any other later versions.
!
! cemfDEM code is distributed to help others in their research in the field
! of granular flow, but WITHOUT ANY WARRANTY; without even the implied
! warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
!------------------------------------------------------------------------------
function User_Mark( id, flag, ptype, dpos, oldMark ) result (mark)
use g_TypeDef
use g_Prtcl_DefaultValues
implicit none
integer(IK),intent(in):: id, flag, ptype, oldMark
type(real4),intent(in):: dpos
integer(IK) mark
!// locals
mark = oldMark
return
end function