There is no way to run the Java code on a GPU. GPUs are programmed in a C like language. It's a C99 with some limitations and some extension. You need to write kernel code which is to be put onto the GPU together with all needed data. Afterwards the kernel can be run massively parallel to get a high calculation throughput.
Being a physicist myself, I doubt, that the calculation of a rocket trajectory can be calculated massively parallel. Your can do that traditionally in fluid dynamics, calculations of multi body problems with really large numbers of bodys and in mathematical calculations like finite element calculations.
I also would advise not to use CUDA, because you are bound to a special vendor (nVidia) and your users might have other hardware at home (ATI, IBM...). OpenCL is an open standard found at http://www.khronos.org. Have a look to examples: http://www.khronos.org/developers/resources/opencl. JOCL (http://www.jocl.org) can be used for that, but you need your customers to install it separately or you need to add it in you JNLP web start file.