source: src/interface/interface_fcs.h@ dfed1c

Last change on this file since dfed1c was dfed1c, checked in by Julian Iseringhausen <isering@…>, 14 years ago

Major vmg update.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@1136 5161e1c8-67bf-11de-9fd5-51895aff932f

  • Property mode set to 100644
File size: 675 bytes
Line 
1/**
2 * @file interface_fcs.h
3 * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
4 * @date Tue Apr 12 17:39:27 2011
5 *
6 * @brief Scafacos C interface.
7 *
8 *
9 */
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15void VMG_fcs_setup(vmg_int level, vmg_int* periodic, vmg_int max_iter,
16 vmg_int smoothing_steps, vmg_int gamma, vmg_float precision,
17 vmg_float* box_offset, vmg_float box_size,
18 vmg_int near_field_cells, MPI_Comm mpi_comm);
19
20void VMG_fcs_run(vmg_float* pos, vmg_float* charge, vmg_float* potential, vmg_float* f, vmg_int num_particles_local);
21
22void VMG_fcs_print_timer(void);
23
24void VMG_fcs_destroy(void);
25
26#ifdef __cplusplus
27} /* extern "C" */
28#endif
Note: See TracBrowser for help on using the repository browser.