Mercurial > dive4elements > river
changeset 7283:8cd48a2a380b
issue1512: Added comment, opened constructor as we will reuse this class.
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Fri, 11 Oct 2013 10:26:18 +0200 |
parents | b59a7cf1c3de |
children | be0e3b93144c |
files | artifacts/src/main/java/org/dive4elements/river/artifacts/model/FlowVelocityData.java |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/artifacts/src/main/java/org/dive4elements/river/artifacts/model/FlowVelocityData.java Fri Oct 11 10:25:34 2013 +0200 +++ b/artifacts/src/main/java/org/dive4elements/river/artifacts/model/FlowVelocityData.java Fri Oct 11 10:26:18 2013 +0200 @@ -18,12 +18,13 @@ private TDoubleArrayList km; private TDoubleArrayList vMain; private TDoubleArrayList vTotal; + /** Also called 'shearstress'. */ private TDoubleArrayList tauMain; private TDoubleArrayList q; private String zone; private String type; - protected FlowVelocityData() { + public FlowVelocityData() { this.km = new TDoubleArrayList(); this.vMain = new TDoubleArrayList(); this.vTotal = new TDoubleArrayList();