/usr/include/liggghts/fix_insert_stream.h is in libliggghts-dev 2.3.8-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112  | /* ----------------------------------------------------------------------
   LIGGGHTS - LAMMPS Improved for General Granular and Granular Heat
   Transfer Simulations
   LIGGGHTS is part of the CFDEMproject
   www.liggghts.com | www.cfdem.com
   Christoph Kloss, christoph.kloss@cfdem.com
   Copyright 2009-2012 JKU Linz
   Copyright 2012-     DCS Computing GmbH, Linz
   LIGGGHTS is based on LAMMPS
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   http://lammps.sandia.gov, Sandia National Laboratories
   Steve Plimpton, sjplimp@sandia.gov
   This software is distributed under the GNU General Public License.
   See the README file in the top-level directory.
------------------------------------------------------------------------- */
#ifdef FIX_CLASS
FixStyle(insert/stream,FixInsertStream)
#else
#ifndef LMP_FIX_INSERT_STREAM_H
#define LMP_FIX_INSERT_STREAM_H
#include "fix_insert.h"
namespace LAMMPS_NS {
class FixInsertStream : public FixInsert {
 public:
  FixInsertStream(class LAMMPS *, int, char **);
  ~FixInsertStream();
  virtual void post_create();
  void pre_delete(bool unfixflag);
  virtual int setmask();
  virtual void init();
  virtual void end_of_step();
  void init_defaults();
  void register_tracer_callback(class FixPropertyAtomTracerStream* tr);
  class FixPropertyAtom * fix_prop_release()
  { return fix_release; }
  virtual int release_step_index()
  { return 4; }
 protected:
  virtual void calc_insertion_properties();
  void pre_insert();
  int is_nearby(int);
  inline void generate_random(double *pos, double rad);
  inline void generate_random_global(double *pos);
  void x_v_omega(int ninsert_this,int &ninserted_this,
                int &ninserted_spheres_this,
                double &mass_inserted_this);
  double insertion_fraction();
  void calc_ins_fraction();
  virtual void finalize_insertion(int);
  // additional insertion settings
  int duration;            //duration for insertion in time-steps
  bool parallel;
  // stuff for insertion region
  double normalvec[3];     // points out of extruded volume
  double extrude_length;
  double extrude_length_min, extrude_length_max;
  double p_ref[3];         // reference point on face
  int face_style;
  double v_normal[3];      // insertion velocity projected on face
  double ins_fraction;
  bool do_ins_fraction_calc;
  // mesh face and bounding box of extruded face
  class TriMesh *ins_face;
  double ins_vol_xmin[3];
  double ins_vol_xmax[3];
  int ntry_mc;
  // non-mesh face
  double c_center[3], c_r; // non mesh face - currently only circle
  // per particle release step
  class FixPropertyAtom *fix_release;
  bool i_am_integrator;
 private:
  class FixPropertyAtomTracerStream **tracer;
  int ntracer;
};
}
#endif
#endif
 |