|
| 1 | +/* ====================================================================== |
| 2 | + LAMMPS NetCDF dump style |
| 3 | + https://github.com/pastewka/lammps-netcdf |
| 4 | + Lars Pastewka, [email protected], and others |
| 5 | + See the AUTHORS file in the top-level Atomistica directory. |
| 6 | +
|
| 7 | + Copyright (2011-2013) Fraunhofer IWM |
| 8 | +
|
| 9 | + This program is free software: you can redistribute it and/or modify |
| 10 | + it under the terms of the GNU General Public License as published by |
| 11 | + the Free Software Foundation, either version 2 of the License, or |
| 12 | + (at your option) any later version. |
| 13 | +
|
| 14 | + This program is distributed in the hope that it will be useful, |
| 15 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | + GNU General Public License for more details. |
| 18 | +
|
| 19 | + You should have received a copy of the GNU General Public License |
| 20 | + along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 21 | + ====================================================================== */ |
| 22 | + |
1 | 23 | /* ----------------------------------------------------------------------
|
2 | 24 | LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
3 | 25 | http://lammps.sandia.gov, Sandia National Laboratories
|
|
11 | 33 | See the README file in the top-level LAMMPS directory.
|
12 | 34 | ------------------------------------------------------------------------- */
|
13 | 35 |
|
14 |
| -/* ---------------------------------------------------------------------- |
15 |
| - Contributing author: Lars Pastewka (Johns Hopkins University, Fh-IWM) |
16 |
| -------------------------------------------------------------------------- */ |
17 |
| - |
18 | 36 | #include <netcdf.h>
|
19 | 37 |
|
20 | 38 | #include "atom.h"
|
|
0 commit comments