Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91105306
manifold_dumbbell.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Nov 7, 23:11
Size
723 B
Mime Type
text/x-c
Expires
Sat, Nov 9, 23:11 (2 d)
Engine
blob
Format
Raw Data
Handle
22197518
Attached To
rLAMMPS lammps
manifold_dumbbell.h
View Options
#ifndef LMP_MANIFOLD_DUMBBELL_H
#define LMP_MANIFOLD_DUMBBELL_H
#include "manifold.h"
namespace
LAMMPS_NS
{
namespace
user_manifold
{
// A dendritic dumbbell approximation:
class
manifold_dumbbell
:
public
manifold
{
public:
enum
{
NPARAMS
=
4
};
// Number of parameters.
manifold_dumbbell
(
LAMMPS
*
lmp
,
int
,
char
**
);
virtual
~
manifold_dumbbell
(){}
virtual
double
g
(
const
double
*
x
);
virtual
void
n
(
const
double
*
x
,
double
*
nn
);
static
const
char
*
type
(){
return
"dumbbell"
;
}
virtual
const
char
*
id
(){
return
type
();
}
static
int
expected_argc
(){
return
NPARAMS
;
}
virtual
int
nparams
(){
return
NPARAMS
;
}
};
}
}
#endif
// LMP_MANIFOLD_DUMBBELL_H
Event Timeline
Log In to Comment