d@9643: /** Copyright (C) 2017 by Bundesanstalt für Gewässerkunde d@9643: * Software engineering by d@9643: * Björnsen Beratende Ingenieure GmbH d@9643: * Dr. Schumacher Ingenieurbüro für Wasser und Umwelt d@9643: * d@9643: * This file is Free Software under the GNU AGPL (>=v3) d@9643: * and comes with ABSOLUTELY NO WARRANTY! Check out the d@9643: * documentation coming with Dive4Elements River for details. d@9643: */ d@9643: package org.dive4elements.river.artifacts.math.fitting; d@9643: d@9643: /** d@9643: * @author Domenico Nardi Tironi d@9643: * d@9643: */ d@9643: public class LogLinearAlternative extends AbstractLogLinear { d@9643: g@9646: public static final String NAME = "log-linear-linearisiert"; d@9643: public static final Function INSTANCE = new LogLinearAlternative(); d@9643: d@9643: public LogLinearAlternative() { d@9643: super(NAME, "W(Q) = a*ln(m*Q + b) (linearisiert)"); d@9643: } d@9643: }