-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhelm.c
More file actions
32 lines (27 loc) · 847 Bytes
/
helm.c
File metadata and controls
32 lines (27 loc) · 847 Bytes
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
//--------------------------------------------------------------------------
//
// Copyright (C) 2014 Rhys Ulerich
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
//--------------------------------------------------------------------------
/** \file
* C99 extern declarations for state inline functions within \ref helm.h.
*/
#include "helm.h"
extern
struct helm_state *
helm_reset(struct helm_state * const h);
extern
struct helm_state *
helm_approach(struct helm_state * const h);
extern
double
helm_steady(struct helm_state * const h,
const double dt,
const double r,
const double u,
const double v,
const double y);