Blame view

src/ExternLib/Ram_Presure/ram_pressure.cc 224 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * Ram_Presure.cc
 *
 *  Created on: 31 oct. 2012
 *      Author: AKKA IS
 */

#include "ram_pressure.hh"

#include <math.h>

float ram_pressure(const float& density, const float& speed) {
	return density*speed*speed;
}