diff --git a/src/c/funktionen.c b/src/c/funktionen.c index b9a8a32..7fd8222 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -121,6 +121,6 @@ int calculatePressure(int force, int area) { return force / area; } -float f(float m) { - return m * 9.81; +float calculateWeight(float mass) { + return mass * 9.81; } \ No newline at end of file diff --git a/src/c/funktionen.h b/src/c/funktionen.h index 3f97507..12a9319 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -58,7 +58,7 @@ int calculateCurrent(int voltage, int resistance); int calculatePressure(int force, int area); // berechnet den Druck -float f(float m); +float calculateWeight(float mass); // berechnet die Gewichtkraft #endif \ No newline at end of file diff --git a/src/test/test_funktionen.c b/src/test/test_funktionen.c index fb8b826..5fadd1f 100644 --- a/src/test/test_funktionen.c +++ b/src/test/test_funktionen.c @@ -265,7 +265,7 @@ void test_weight_at_mass100(void) /* act */; float m = 100; - actual = f(m); + actual = calculateWeight(m); /* assert */ TEST_ASSERT_EQUAL_FLOAT(expected, actual);