My final goal is being able to generate a surrogate of a physics simulation, I started generating from this kind of simulation
tables of positions, velocities and forces for three vertex in the volumetric mesh like this extract
# Gnuplot File : positions of 3 particle(s) Monitored
# 1st Column : time, others : particle(s) number 2 11 2
0.02 -0.481127 2.87558 1.94229 0.366589 4.31151 -0.918787 -0.481127 2.87558 1.94229
0.04 -0.481342 2.87134 1.94208 0.366591 4.3059 -0.918996 -0.481342 2.87134 1.94208
0.06 -0.481722 2.86563 1.94184 0.366525 4.29711 -0.919455 -0.481722 2.86563 1.94184
0.08 -0.482283 2.85879 1.94158 0.366338 4.2852 -0.920286 -0.482283 2.85879 1.94158
The small sample data can be downloaded here.
Testing Surrogates.jl only on a 1D subset of the data (just the x values, cleaned from duplicates and ordered so not the real one but just to get the idea) I can generate a Kriging surrogate that recreate positions from forces, using these data such as samples of the true function I didn’t know (embedded in the simulator).
Problem here is the surrogate didn’t resemble at all these data, and I can’t use optimization due the fact I didn’t know the function embedded in the simulator that generated my dataset.
So just wanted to ask a suggestion about a way forward in this exercise.