initial upload

This commit is contained in:
2021-05-05 10:58:03 +08:00
parent d6ffc7f33c
commit f1cf25db22
114 changed files with 83953 additions and 0 deletions

16
toolkits/tesspot.c Normal file
View File

@@ -0,0 +1,16 @@
/*
Program to calculate potential of a tesseroid model on a set of points.
*/
#include "../lib/constants.h"
#include "../lib/grav_tess.h"
#include "../lib/tessg_main.h"
/** Main */
int main(int argc, char **argv)
{
return run_tessg_main(argc, argv, "tesspot", &tess_pot,
TESSEROID_POT_SIZE_RATIO);
}