-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdroplet.hpp
45 lines (33 loc) · 1.03 KB
/
droplet.hpp
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
#ifndef DROPLET_H_
#define DROPLET_H_
#include <iostream>
#include "constants.hpp"
using constants::RHO_WATER;
struct Droplet {
private:
static int num_droplets;
public:
long _multi;
double _rcubed, _solute, _density;
double _radius, _volume, _mass;
// Constructors
Droplet();
Droplet(long multi, double rcubed, double solute=0.0, double density=RHO_WATER);
Droplet(const Droplet &d);
~Droplet();
// Accessors / mutators
// double get_mass() const;
// long get_multi() const;
// double get_radius() const;
// double get_solute() const;
double get_terminal_v() const;
void set_droplet(long multi, double rcubed, double solute);
// double get_volume() const;
// Static methods
static int global_droplet_count() { return num_droplets; }
// Operator overloads and friends
Droplet & operator= (const Droplet &);
friend bool operator< (const Droplet & d1, const Droplet & d2);
friend std::ostream & operator<<(std::ostream & os, const Droplet & d);
};
#endif