commit | author | age
|
7f6076
|
1 |
/* vim: set ts=4 sts=4 sw=4 noet : */ |
d7639a
|
2 |
#ifndef _ENERGY_H |
SP |
3 |
#define _ENERGY_H |
|
4 |
ts_bool mean_curvature_and_energy(ts_vesicle *vesicle); |
|
5 |
inline ts_bool energy_vertex(ts_vertex *vtx); |
fedf2b
|
6 |
inline ts_bool bond_energy(ts_bond *bond,ts_poly *poly); |
e5858f
|
7 |
|
SP |
8 |
ts_bool sweep_attraction_bond_energy(ts_vesicle *vesicle); |
|
9 |
inline ts_bool attraction_bond_energy(ts_bond *bond, ts_double w); |
250de4
|
10 |
ts_double direct_force_energy(ts_vesicle *vesicle, ts_vertex *vtx, ts_vertex *vtx_old); |
7ec6fb
|
11 |
|
SP |
12 |
void stretchenergy(ts_vesicle *vesicle, ts_triangle *triangle); |
620ba7
|
13 |
ts_double stretchenergy2(ts_double current_area,ts_double tensionless_area); |
d7639a
|
14 |
#endif |