Skip to content
Snippets Groups Projects
Commit e4a9024d authored by Denis Louis's avatar Denis Louis
Browse files

resolve merge conflicts

parents a2f53bf6 5e4f2c74
No related branches found
No related tags found
1 merge request!7Coupling
# list of ignored files/folders
build/
build*/
*~
*.o
*.obj
......
@echo off
:: This file opens a terminal which allows you to compile the code with
:: a 64-bit mingw compiler
:: https://mingw-w64.org/
:: https://www.msys2.org/
::
:: HOW TO USE THIS FILE?
:: [check the PATHs below]
:: [run this file]
:: mkdir build
:: cd build
:: cmake ..
:: make
:: ctest
::
:: How to clean the "build" folder using cmd line?
:: cd build
:: rd /q /s .
echo setting MSVC environment...
:: set the location of gmsh SDK / mingw compiler
set GMSHSDK=%~dp0..\lib\gmsh-sdk
set EIGEN=%~dp0..\lib\eigen
:: perform some tests...
IF NOT EXIST %GMSHSDK% (
ECHO - gmsh-sdk NOT found in %GMSHSDK%!!
@REM PAUSE
@REM EXIT /B
) ELSE (
ECHO - gmsh-sdk found in %GMSHSDK%.
)
IF NOT EXIST %EIGEN% (
ECHO - eigen NOT found in %EIGEN%!!
@REM PAUSE
@REM EXIT /B
) ELSE (
ECHO - eigen found in %EIGEN%.
)
:: where is gmsh.exe and gmsh-**.dll ?
set PATH=%GMSHSDK%\bin;%GMSHSDK%\lib;%PATH%
:: where is gmsh.h ?
set INCLUDE=%EIGEN%;%GMSHSDK%\include;%INCLUDE%
:: where is gmsh.lib ?
set LIB=%GMSHSDK%\lib;%LIB%
:: where is gmsh.py ? (required only if you want to use the python API)
set PYTHONPATH=%GMSHSDK%\lib;%PYTHONPATH%
:: clear local vars
set GMSHSDK=
set EIGEN=
:: open terminal
CD /d "%~dp0"
CD ..
%comspec% /K
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
This diff is collapsed.
Lx = 5;
Ly = 2;
nx = 50; // prend beaucoup de temps àpd de 200x40
ny = 20;
nx = 200; //50; // prend beaucoup de temps àpd de 200x40
ny = 80; //20;
Point(1) = {0, 0, 0, 0.1};
Point(2) = {Lx, 0, 0, 0.1};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment