Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows version of ElmerGrid would crash upon trying to save the mesh. #395

Merged
merged 1 commit into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ElmerGUI/Application/plugins/egtypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define DIM 2 /* dimension of the space */
#define MAXDOFS 20 /* maximum number of variables, e.g. T,P */
#define MAXCELLS 100 /* maximum number of subcells in given direction */
#define MAXBOUNDARIES 1000 /* maximum number of boundaries for BCs */
#define MAXBOUNDARIES 4000 /* maximum number of boundaries for BCs */
#define MAXCASES 12 /* maximum number of coexisting cases */
#define MAXFILESIZE 600 /* maximum filenamesize for i/o files */
#define MAXLINESIZE 600 /* maximum length of line to be read */
Expand All @@ -18,7 +18,7 @@
#define MAXNODESD1 9 /* maximum number of 1D nodes */
#define MAXMAPPINGS 20 /* maximum number of geometry mappings */
#define MAXCONNECTIONS 500 /* maximum number of connections in nodal or dual graph */
#define MAXBCS 1000 /* maximum number of BCs in naming */
#define MAXBCS 4000 /* maximum number of BCs in naming */
#define MAXBODIES 1000 /* maximum number of bodies in naming */
#define MAXPARTITIONS 512 /* maximum number of partitions */
#define MAXHALOMODES 10
Expand Down
4 changes: 2 additions & 2 deletions elmergrid/src/egtypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define DIM 2 /* dimension of the space */
#define MAXDOFS 20 /* maximum number of variables, e.g. T,P */
#define MAXCELLS 100 /* maximum number of subcells in given direction */
#define MAXBOUNDARIES 5000 /* maximum number of boundaries for BCs */
#define MAXBOUNDARIES 4000 /* maximum number of boundaries for BCs */
#define MAXCASES 12 /* maximum number of coexisting cases */
#define MAXFILESIZE 600 /* maximum filenamesize for i/o files */
#define MAXLINESIZE 600 /* maximum length of line to be read */
Expand All @@ -18,7 +18,7 @@
#define MAXNODESD1 9 /* maximum number of 1D nodes */
#define MAXMAPPINGS 20 /* maximum number of geometry mappings */
#define MAXCONNECTIONS 500 /* maximum number of connections in nodal or dual graph */
#define MAXBCS 5000 /* maximum number of BCs in naming */
#define MAXBCS 4000 /* maximum number of BCs in naming */
#define MAXBODIES 1000 /* maximum number of bodies in naming */
#define MAXPARTITIONS 512 /* maximum number of partitions */
#define MAXHALOMODES 10
Expand Down