Я надеюсь реализовать простую программу молекулярной динамики.Мой первый шаг - определить систему как последовательность атомов, каждый из которых имеет тип, идентификационный номер, трехмерный вектор положения и трехмерный вектор скорости.Ниже приведена программа, которую я написал для этого:
FILE *init;
static int randomVelocity(void)
{
return rand()/RAND_MAX - 0.5;
}
int main(int argc, char *argv[])
{
int iType;
int iID;
int i;
double* pdPosition;
double* pdVelocity;
char* line;
Atom* poAtoms;
int count = 0;
init = fopen("newdat.txt", "r+");
srand((unsigned)time(NULL));
line = malloc(81*sizeof(char));
while (fgets(line, 80, init) != NULL)
{
char* tok1;
char* tok2;
char* tok3;
char* tok4;
tok1 = strtok(line, " \t");
if ((tok1 == NULL) || (tok1[0] == '*'))
{
break;
}
tok2 = strtok(NULL, " \t");
tok3 = strtok(NULL, " \t");
tok4 = strtok(NULL, " \t");
iType = atoi(tok1);
iID = count;
pdPosition = (double*)malloc(3*sizeof(double));
pdVelocity = (double*)malloc(3*sizeof(double));
pdPosition[0] = atof(tok2);
pdPosition[1] = atof(tok3);
pdPosition[2] = atof(tok4);
pdVelocity[0] = randomVelocity();
pdVelocity[1] = randomVelocity();
pdVelocity[2] = randomVelocity();
poAtoms[count] = Atom_new(iType, iID, pdPosition, pdVelocity);
count++;
}
for (i = 0; i < count; i++)
{
Atom_print(poAtoms[i]);
Atom_free(poAtoms[i]);
}
free(line);
return 0;
}
Вот заголовочный файл atom.h:
/**** atom.h ****/
typedef struct Atom_str *Atom;
Atom Atom_new(int iType, int iID, double* adPosition, double* adVelocity);
void Atom_free(Atom oAtom);
void Atom_print(Atom oAtom);
и тестовый входной файл:
1 5 7 9
2 12 13 14
Программа компилируется, но когда я ее запускаю, я получаю ожидаемый результат, за которым следует ошибка сегмента.Я использую отладчик GDB, и ошибка seg возникает в самой последней строке кода после оператора return!Это проблема управления памятью?