File: SteadyStateUnit.h

package info (click to toggle)
dyssol 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,184 kB
  • sloc: cpp: 53,870; sh: 85; python: 59; makefile: 11
file content (16 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright (c) 2020, Dyssol Development Team. All rights reserved. This file is part of Dyssol. See LICENSE file for license information. */

#pragma once

#include "BaseUnit.h"

class CSteadyStateUnit : public CBaseUnit
{
public:
	CSteadyStateUnit() = default;
	~CSteadyStateUnit() override = default;

	/**	Calculates unit on a time point (for steady-state units).
	 *	\param _time Time point to calculate*/
	void Simulate(double _time) override = 0;
};