Skip to content
Snippets Groups Projects
Makefile 354 B
Newer Older
Nicolas Marsic's avatar
Nicolas Marsic committed
BIN=../bin

test:
	@echo "make cim: run the countour integral solver"
	@echo "make ref: compute the first eigenvalue directly with GetDP"

ref: init
	getdp ref.pro -solve Eig -pos Eig -msh square.msh

cim: init
Nicolas Marsic's avatar
Nicolas Marsic committed
	python ${BIN}/cim.py maxwell.pro square.msh Maxwell Maxwell 9e8 1e8

init:
	gmsh square.geo -2

clean:
	rm -f *.pos
	rm -f *.pre
	rm -f *.msh