ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-2.0/src/UseTheForce/doForces_interface.F90
(Generate patch)

Comparing trunk/OOPSE-2.0/src/UseTheForce/doForces_interface.F90 (file contents):
Revision 1948 by gezelter, Fri Jan 14 20:31:16 2005 UTC vs.
Revision 2204 by gezelter, Fri Apr 15 22:04:00 2005 UTC

# Line 3 | Line 3 | subroutine initFortranFF(use_RF_c, thisStat)
3   subroutine initFortranFF(use_RF_c, thisStat)
4    use doForces, ONLY: init_FF
5    logical, intent(in) :: use_RF_c
6 <  
6 >
7    integer, intent(out) :: thisStat  
8    call init_FF(use_RF_c, thisStat)
9 <  
9 >
10   end subroutine initFortranFF
11  
12   subroutine doForceloop(q, q_group, A, eFrame, f, t, tau, pot, &
13       do_pot_c, do_stress_c, error)
14 <  
14 >
15    use definitions, ONLY: dp
16    use simulation
17    use doForces, ONLY: do_force_loop
# Line 27 | Line 27 | subroutine doForceloop(q, q_group, A, eFrame, f, t, ta
27    real ( kind = dp ), dimension(3,nLocal) :: f
28    !! Torsion array provided by C, dimensioned by getNlocal
29    real( kind = dp ), dimension(3,nLocal) :: t    
30 <  
30 >
31    !! Stress Tensor
32    real( kind = dp), dimension(9) :: tau  
33    real ( kind = dp ) :: pot
34    logical ( kind = 2) :: do_pot_c, do_stress_c
35    integer :: error
36 <  
36 >
37    call do_force_loop(q, q_group, A, eFrame, f, t, tau, pot, &
38         do_pot_c, do_stress_c, error)
39 <  
39 >
40   end subroutine doForceloop

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines