From 0c8bb870327101a0dca9a0b0cae8d38049f7f4bb Mon Sep 17 00:00:00 2001 From: Alex_Hubert Date: Fri, 15 Oct 2021 16:24:47 +0200 Subject: [PATCH] initialisation --- LeapFrog_1.0.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 LeapFrog_1.0.py diff --git a/LeapFrog_1.0.py b/LeapFrog_1.0.py new file mode 100644 index 0000000..941b888 --- /dev/null +++ b/LeapFrog_1.0.py @@ -0,0 +1,18 @@ +from math import * +import numpy as np + +def main(): + + #initialisation + x1 = np.array([0, 0, 0]) + x2 = np.array([1, 0, 0]) + x3 = np.array([1, 0, 0]) + + v1 = np.array([0, 0, 0]) + v2 = np.array([1, 0, 0]) + v3 = np.array([1, 0, 0]) + + + +if __name__ == '__main__': + main() \ No newline at end of file