import numpy as np 
import os
from colorPlotForAdgfem import readEtaFile, readMesh, readEtaFromParaviewMeshFile, \
	plotConst, plotConstWithLimits, plotEtaWithAdaptation

######
# 31. October 2018 #


   
################################################################################
# NOT TESTED 
################################################################################
#etaPrefix = 'etaAver'
nMeshes = 6
path = '../test_Euler/p1'
#path = '../test_sod_Euler/'
direcName = 'eta_Euler_drag_new'
#       0			1 		2		3		7      , 29
#etas = ['etaAver', 'etaS', 'etaD', 'etaA', 'etaAD', 'etaMark']
etas = ['etaAver']
adapt = True # TriA or Tri-


# edgecolors - none = no edges, k = black
plotEtaWithAdaptation( etas, nMeshes, path, direcName, adapt, edgecolors = 'k')
   
   
