#ifndef _Delta_h_
#define _Delta_h_
/* Delta.h
 *
 * Copyright (C) 1992-2002 Paul Boersma
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/*
 * pb 1995/10/15
 * pb 2002/07/16 GPL
 */

typedef struct Delta_Tube *Delta_Tube;
struct Delta_Tube
{
	/* Structure: static. */

	Delta_Tube left1;   /* If NULL: closed at left edge. */
	Delta_Tube left2;   /* If not NULL: two merging streams. */
	Delta_Tube right1;  /* If NULL: radiation at right edge. */
	Delta_Tube right2;  /* If not NULL: a stream splitting into two. */
	long parallel;   /* Parallel subdivision. */

	/* Controlled by articulation: quasistatic. */

	double Dxeq, Dyeq, Dzeq;
	double mass, k1, k3, Brel, s1, s3, dy;
	double k1left1, k1left2, k1right1, k1right2;   /* Linear coupling factors. */
	double k3left1, k3left2, k3right1, k3right2;   /* Cubic coupling factors. */

	/* Dynamic. */

	double Jhalf, Jleft, Jleftnew, Jright, Jrightnew;
	double Qhalf, Qleft, Qleftnew, Qright, Qrightnew;
	double Dx, Dxnew, dDxdt, dDxdtnew, Dxhalf;
	double Dy, Dynew, dDydt, dDydtnew;
	double Dz;
	double A, Ahalf, Anew, V, Vnew;
	double e, ehalf, eleft, eleftnew, eright, erightnew, ehalfold;
	double p, phalf, pleft, pleftnew, pright, prightnew;
	double Kleft, Kleftnew, Kright, Krightnew, Pturbright, Pturbrightnew;
	double B, r, R, DeltaP, v;
};

#include "Thing.h"
#define Delta_members Thing_members \
	int numberOfTubes; \
	struct Delta_Tube *tube;
#define Delta_methods Thing_methods
class_create (Delta, Thing)

/*
	Members:
		numberOfTubes >= 1
		tube [1..numberOfTubes]
*/

Delta Delta_create (int numberOfTubes);
/*
	Function:
		return a new Delta or NULL if out of memory.
	Preconditions:
		numberOfTubes >= 1;
	Postconditions:
		result -> numberOfTubes = numberOfTubes;
		all members of result -> tube [1..numberOfTubes] are zero or NULL,
		except 'parallel', which is 1.
*/

/* End of file Delta.h */
#endif
