xref: /petsc/lib/petsc/bin/configureTAS.py (revision d898ec0d692266cff87a3fddd4c04a604cd4fffc)
1#!/usr/bin/env python
2"""
3This module holds configuration information for the petsc_tas_analysis.py in
4  a dictionary format.  This module takes no parameters.
5
6  The key absoluteGraphs has contains the string of the absolute path to place
7   the generated graphs.
8
9   The key absoluteData has contains the string of the absolute path to look
10    for the file containing the information to be analyzed.  Within petsc_tas_analysis
11    the system.path variable is appended to include this path.
12
13"""
14filePath = {}
15filePath['absoluteGraphs'] = '/home/arcowie/petscTas/graphs/'
16filePath['absoluteData']   = '/home/arcowie/petscTas/data'
17
18fieldNames = {}
19fieldNames['ex62'] = {}
20fieldNames['ex62']['field 0'] = 'Velocity'
21fieldNames['ex62']['field 1'] = 'Pressure'
22