Error in mesh the domain in example 1 #13
-
Hi,
Which version of Neper can be used for this simulation? or is there any other way to solve this problem? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
You have to include libscotch at Neper's configuration stage - see the PDF documentation, Section 1.2. Then you'll see this in Neper's header:
|
Beta Was this translation helpful? Give feedback.
-
Hi fei1127-CQ, I had a similar issue with not building Neper with libscotch. I solved this by the following steps below. 1.) Make sure you have installed the libscotch dependency. You can do this by typing the following command in your terminal: I use Ubuntu. If you do too, you would need to type: 2.) Start installing Neper. The key is you need to type "$ cmake .. -DHAVE_LIBCOTCH=ON" instead of just "$ cmake .." Download and extract Neper source code then: If you used Ubuntu like me, then the code would be: I hope this helps! Cheers! Richard |
Beta Was this translation helpful? Give feedback.
Hi fei1127-CQ,
I had a similar issue with not building Neper with libscotch. I solved this by the following steps below.
1.) Make sure you have installed the libscotch dependency. You can do this by typing the following command in your terminal:
$ apt-get install libscotch-dev
I use Ubuntu. If you do too, you would need to type:
$ sudo apt-get install libscotch-dev
2.) Start installing Neper. The key is you need to type "$ cmake .. -DHAVE_LIBCOTCH=ON" instead of just "$ cmake .."
Download and extract Neper source code then:
$ cd neper-4.0.2/src
$ mkdir build
$ cd build
$ cmake .. -DHAVE_LIBSCOTCH=ON
$ make
$ make install
If you used Ubuntu like me, then the code would be:
$ cd neper-4.0.2…