-3

I am running a program to compute the thermo-electro-elastic response of a solid material under certain conditions. Every time I specify the input file after executing the feappv command, I receive the following error message.

Program received signal SIGABRT: Process abort signal. Backtrace for this error: Aborted (core dumped)

I dont understand the meaning of this error. Please help.

Thank u all

  • 2
    This can mean anything. Enable all debugging and error checking options, post your code and FULL error message you got. Read http://stackoverflow.com/help/mcve – Vladimir F Героям слава Mar 26 '15 at 23:16
  • http://stackoverflow.com/questions/3413166/when-does-a-process-get-sigabrt-signal-6 – agentp Mar 27 '15 at 11:10
  • If your problem is what caused the abort from FEAPpv, you will likely get more support from [their user forums](http://feap.berkeley.edu/forum/index.php) . –  Mar 27 '15 at 13:55

1 Answers1

1

Your program received the SIGABRT signal. This generally happens through invocation of the abort() function from C or by executing call abort from Fortran. See the documentation of your compiler for details. It is common programming practice to call abort when some severe error in the program or inconsistency in input data has been detected.