Skip to content

Commit

Permalink
#266: renamed mesh visualizer to reflect expanded scope
Browse files Browse the repository at this point in the history
  • Loading branch information
ppebay committed Jun 20, 2022
1 parent cb8cdb7 commit 5d3f4ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/lbaf/Applications/LBAF_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from lbaf.Execution.lbsRuntime import Runtime
from lbaf.IO.configurationValidator import ConfigurationValidator
from lbaf.IO.lbsVTDataWriter import VTDataWriter
from lbaf.IO.lbsMeshWriter import MeshWriter
from lbaf.IO.lbsMeshBasedVisualizer import MeshBasedVisualizer
import lbaf.IO.lbsStatistics as lbstats
from lbaf.Model.lbsPhase import Phase
from lbaf.Utils.logger import logger
Expand Down Expand Up @@ -295,8 +295,8 @@ def main(self):
gen_meshes = self.params.__dict__.get("generate_meshes")
gen_mulmed = self.params.__dict__.get("generate_multimedia")
if gen_meshes or gen_mulmed:
# Instantiate phase to mesh writer if requested
ex_writer = MeshWriter(
# Instantiate mesh based visualizer and execute as requested
ex_writer = MeshBasedVisualizer(
self.logger,
phases,
self.params.grid_size,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from .lbsGridStreamer import GridStreamer
from ..Model.lbsPhase import Phase

class MeshWriter:
"""A class to write LBAF results to mesh files via VTK layer."""
class MeshBasedVisualizer:
"""A class to visualize LBAF results via mesh files and VTK views."""

def __init__(
self,
Expand Down

0 comments on commit 5d3f4ff

Please sign in to comment.