ras-commander 0.52.0__py3-none-any.whl → 0.53.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -449,29 +449,47 @@ class RasUnsteady:
449
449
  """
450
450
  data = []
451
451
  for line in lines[start:end]:
452
- # Split the line into 8-character columns
453
- values = [line[i:i+8].strip() for i in range(0, len(line), 8)]
454
- # Convert to float and handle cases where values are run together
455
- parsed_values = []
456
- for value in values:
457
- try:
458
- if len(value) > 8: # If values are run together
459
- parts = re.findall(r'-?\d+\.?\d*', value)
460
- parsed_values.extend([float(p) for p in parts])
461
- elif value: # Only add non-empty values
462
- parsed_values.append(float(value))
463
- except ValueError as e:
464
- logger.warning(f"Could not parse value '{value}': {e}")
465
- continue
466
- data.extend(parsed_values)
452
+ # Skip empty lines or lines that don't contain numeric data
453
+ if not line.strip() or not any(c.isdigit() for c in line):
454
+ continue
455
+
456
+ # Split the line into 8-character columns and process each value
457
+ values = []
458
+ for i in range(0, len(line.rstrip()), 8):
459
+ value_str = line[i:i+8].strip()
460
+ if value_str: # Only process non-empty strings
461
+ try:
462
+ # Handle special cases where numbers are run together
463
+ if len(value_str) > 8:
464
+ # Use regex to find all numbers in the string
465
+ parts = re.findall(r'-?\d+\.?\d*', value_str)
466
+ values.extend([float(p) for p in parts])
467
+ else:
468
+ values.append(float(value_str))
469
+ except ValueError:
470
+ # If conversion fails, try to extract any valid numbers from the string
471
+ parts = re.findall(r'-?\d+\.?\d*', value_str)
472
+ if parts:
473
+ values.extend([float(p) for p in parts])
474
+ else:
475
+ logger.debug(f"Skipping non-numeric value: {value_str}")
476
+ continue
477
+
478
+ # Only add to data if we found valid numeric values
479
+ if values:
480
+ data.extend(values)
467
481
 
482
+ if not data:
483
+ logger.warning("No numeric data found in table section")
484
+ return pd.DataFrame(columns=['Value'])
485
+
468
486
  return pd.DataFrame(data, columns=['Value'])
469
-
487
+
470
488
  @staticmethod
471
489
  @log_call
472
490
  def extract_tables(unsteady_file: str, ras_object: Optional[Any] = None) -> Dict[str, pd.DataFrame]:
473
491
  """
474
- Extract all tables from the unsteady file and return them as DataFrames.
492
+ Extract all tables from the unsteady flow file and return them as DataFrames.
475
493
 
476
494
  Parameters:
477
495
  unsteady_file (str): Path to the unsteady flow file
@@ -495,11 +513,12 @@ class RasUnsteady:
495
513
  logger.error(f"Permission denied when reading unsteady flow file: {unsteady_path}")
496
514
  raise
497
515
 
498
- tables = RasBndry.identify_tables(lines)
516
+ # Fix: Use RasUnsteady.identify_tables
517
+ tables = RasUnsteady.identify_tables(lines)
499
518
  extracted_tables = {}
500
519
 
501
520
  for table_name, start, end in tables:
502
- df = RasBndry.parse_fixed_width_table(lines, start, end)
521
+ df = RasUnsteady.parse_fixed_width_table(lines, start, end)
503
522
  extracted_tables[table_name] = df
504
523
  logger.debug(f"Extracted table '{table_name}' with {len(df)} values")
505
524
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ras-commander
3
- Version: 0.52.0
3
+ Version: 0.53.0
4
4
  Summary: A Python library for automating HEC-RAS operations
5
5
  Home-page: https://github.com/billk-FM/ras-commander
6
6
  Author: William M. Katzenmeyer
@@ -18,7 +18,7 @@ Dynamic: summary
18
18
 
19
19
  # RAS Commander (ras-commander)
20
20
 
21
- RAS Commander is a Python library for automating HEC-RAS operations, providing a set of tools to interact with HEC-RAS project files, execute simulations, and manage project data. This library is an evolution of the RASCommander 1.0 Python Notebook Application previously released under the [HEC-Commander tools repository](https://github.com/billk-FM/HEC-Commander).
21
+ RAS Commander is a Python library for automating HEC-RAS operations, providing a set of tools to interact with HEC-RAS project files, execute simulations, and manage project data. This library was initially conceptualized in the Australian Water School course "AI Tools for Modelling Innovation", and subsequently expanded to cover the basic functionality of the HECRASController COM32 interface using open-source python libraries. This library uses a Test Driven Development strategy, leveraging the publicly-available HEC-RAS Example projects to create repeatable demonstration examples. The "Commmander" moniker is inspired by the "Command Line is All You Need" approach to HEC-RAS automation that was first implemented in the HEC-Commander Tools repository.
22
22
 
23
23
  ## Contributors:
24
24
  William Katzenmeyer, P.E., C.F.M.
@@ -29,9 +29,17 @@ Aaron Nichols, P.E., C.F.M.
29
29
 
30
30
  (Additional Contributors Here)
31
31
 
32
- ## Don't Ask Me, Ask ChatGPT!
32
+ ## Don't Ask Me, Ask ChatGPT!
33
33
 
34
- Before you read any further, you can [chat directly with ChatGPT.](https://chatgpt.com/g/g-TZRPR3oAO-ras-commander-library-assistant) about the library. Ask it anything, and it will use its tools to answer your questions and help you learn. You can even upload your own plan, unsteady and HDF files to inspect and help determine how to automate your workflows or visualize your results, although this ability is still limited in comparison to the provided library assistant.
34
+ This repository has several methods of interaction with Large Language Models and LLM-Assisted Coding built right in:
35
+
36
+ 1. **[RAS Commander Library Assistant GPT](https://chatgpt.com/g/g-TZRPR3oAO-ras-commander-library-assistant)**: A specialized GPT model with access to the ras-commander codebase and library, available for answering queries and providing code suggestions. You can even upload your own plan, unsteady and HDF files to inspect and help determine how to automate your workflows or visualize your results, although this ability is still limited by OpenAI's GPT frameworks and may not be useful for long conversations.
37
+
38
+ 2. **[Purpose-Built Knowledge Base Summaries](https://github.com/billk-FM/ras-commander/tree/main/ai_tools/assistant_knowledge_bases)**: Up-to-date compilations of the documentation and codebase for use with large language models like Claude or GPT-4. Look in 'ai_tools/assistant_knowledge_bases/' in the repo. The repo's codebase (without documentation and examples) has been curated to stay within the current ~200k context window limitations of frontier models, and for tasks that do not need an understanding of the underlying code, the Comprehensive Library Guide and any relevant examples from the example folder should be adequate context for leveraging the ras-commander API to complete tasks.
39
+
40
+ 3. **[Cursor IDE Integration](https://github.com/billk-FM/ras-commander/blob/main/.cursorrules)**: Custom rules(.cursorrules) for the Cursor IDE to provide context-aware suggestions and documentation. Just open the repository folder in Cursor to recognize these instructions. You can create your own folders "/workspace/, "/projects/", or "my_projects/" as these are already in the .gitignore, and place your custom scripts there for your projects. This will allow easy referencing of the ras-commander documents and individual repo files, the automatic loading of the .cursorrules file. Alternatvely, download the github repo into your projects folder to easily load documents and use cursor rules files.
41
+
42
+ 5. **[RAS-Commander Library Assistant](https://github.com/billk-FM/ras-commander/blob/main/library_assistant)**: A full-featured interface for multi-turn conversations, using your own API keys and the ras-commander library for context. The library assistant allows you to load your own scripts and chat with specific examples and/or function classes in the RAS-Commander library to effectively utilize the library's functions in your workflow. To reduce hallucinations, a file browser is included which adds full files to the conversation to ensure grounded responses. A dashboard shows you the total context and estimated cost of each request. **Now with support for OpenAI's o1 and o3-mini, and Deepseek V3 and R1 models using US-based Together.ai**
35
43
 
36
44
 
37
45
  ## Background
@@ -39,65 +47,90 @@ The ras-commander library emerged from the initial test-bed of AI-driven coding
39
47
 
40
48
  ## Features
41
49
 
42
- - Automate HEC-RAS project management and simulations
43
- - Support for both single and multiple project instances
44
- - Parallel execution of HEC-RAS plans
45
- - Utilities for managing geometry, plan, and unsteady flow files
46
- - Example project management for testing and development
47
- - Two primary operation modes: "Run Missing" and "Build from DSS"
48
-
49
- ## AI-Driven Coding Experience
50
+ If you've ever read the book "Breaking the HEC-RAS Code" by Chris Goodell, this library is intended to be an AI-coded, pythonic library that provides a modern alternative to the HECRASController API. By leveraginging modern python features libraries such as pandas, geopandas and H5Py (favoring HDF data sources wherever practicable) this library builds functionality around HEC-RAS 6.2+ while maintaining as much forward compatibilty as possible with HEC-RAS 2025.
50
51
 
51
- ras-commander provides several AI-powered tools to enhance the coding experience:
52
+ HEC-RAS Project Management & Execution
53
+ - Multi-project handling with parallel and sequential execution
54
+ - Command-line execution integration
55
+ - Project folder management and organization
56
+ - Multi-core processing optimization
57
+ - Progress tracking and logging
58
+ - Execution error handling and recovery
52
59
 
53
- 1. **ChatGPT Assistant: [RAS Commander Library Assistant](https://chatgpt.com/g/g-TZRPR3oAO-ras-commander-library-assistant)**: A specialized GPT model trained on the ras-commander codebase, available for answering queries and providing code suggestions.
54
60
 
55
- 2. **[Purpose-Built Knowledge Base Summaries](https://github.com/billk-FM/ras-commander/tree/main/ai_tools/assistant_knowledge_bases)**: Up-to-date compilations of the documentation and codebase for use with large language models like Claude or GPT-4. Look in 'ai_tools/assistant_knowledge_bases/' in the repo.
61
+
62
+ HDF Data Access & Analysis
63
+ - 2D mesh results processing (depths, velocities, WSE)
64
+ - Cross-section data extraction
65
+ - Boundary condition analysis
66
+ - Structure data (bridges, culverts, gates)
67
+ - Pipe network and pump station analysis
68
+ - Fluvial-pluvial boundary calculations
69
+ - Infiltration and precipitation data handling
56
70
 
57
- 3. **[Cursor IDE Integration](https://github.com/billk-FM/ras-commander/blob/main/.cursorrules)**: Custom rules for the Cursor IDE to provide context-aware suggestions and documentation. Just open the repository folder in Cursor. You can create your own folders "/workspace/, "/projects/", or "my_projects/" as these are already in the .gitignore, and place your custom scripts there for your projects. This will allow easy referencing of the ras-commander documents and individual repo files, the automatic loading of the .cursorrules file. Alternatvely, download the github repo into your projects folder to easily load documents and use cursor rules files.
58
- 4. **[RAS-Commander Library Assistant](https://github.com/billk-FM/ras-commander/blob/main/library_assistant)**: A full-featured interface for multi-turn conversations, using your own API keys and the ras-commander library for context. The library assistant allows you to load your own scripts and chat with specific examples and/or function classes in the RAS-Commander library to effectively utilize the library's functions in your workflow.
71
+
72
+ RAS ASCII File Operations
73
+ - Plan file creation and modification
74
+ - Geometry file parsing examples
75
+ - Unsteady flow file management
76
+ - Project file updates and validation
59
77
 
78
+ Note about support for Pipe Networks: As a relatively new feature, only read access to Pipe Network geometry and results data has been included. Users will need to code their own methods to modify/add pipe network data, and pull requests are always welcome to incorporate this capability. Please note that the library has not been tested with versions prior to HEC-RAS 6.2.
60
79
 
61
80
  ## Installation
62
81
 
63
- Create a virtual environment with conda or venv (ask ChatGPT if you need help)
82
+ First, create a virtual environment with conda or venv (ask ChatGPT if you need help).
83
+
84
+ #### Install via Pip
64
85
 
65
86
  In your virtual environment, install ras-commander using pip:
66
87
  ```
67
88
  pip install h5py numpy pandas requests tqdm scipy xarray geopandas matplotlib ras-commander ipython tqdm psutil shapely fiona pathlib rtree rasterstats
68
89
  pip install --upgrade ras-commander
69
90
  ```
70
-
71
- **Tested with Python 3.11**
72
-
73
-
74
91
  If you have dependency issues with pip (especially if you have errors with numpy), try clearing your local pip packages 'C:\Users\your_username\AppData\Roaming\Python\' and then creating a new virtual environment.
75
92
 
93
+ #### Work in a Local Copy
94
+
95
+ If you want to make revisions and work actively in your local version of ras-commander, just skip the pip install rascommander step above and clone a fork of the repo to your local machine using Git (ask ChatGPT if you need help). Most of the notebooks and examples in this repo have a code segment similar to the one below, that works as long as the script is located in a first-level subfolder of the ras-commander repository:
96
+ ```
97
+ # Flexible imports to allow for development without installation
98
+ try:
99
+ # Try to import from the installed package
100
+ from ras_commander import init_ras_project, RasExamples, RasCmdr, RasPlan, RasGeo, RasUnsteady, RasUtils, ras
101
+ except ImportError:
102
+ # If the import fails, add the parent directory to the Python path
103
+ current_file = Path(__file__).resolve()
104
+ parent_directory = current_file.parent.parent
105
+ sys.path.append(str(parent_directory))
106
+ # Alternately, you can just define a path sys.path.append(r"c:/path/to/rascommander/rascommander)")
107
+
108
+ # Now try to import again
109
+ from ras_commander import init_ras_project, RasExamples, RasCmdr, RasPlan, RasGeo, RasUnsteady, RasUtils, ras
110
+ ```
111
+ It is highly suggested to fork this repository before going this route, and using Git to manage your changes! This allows any revisions to the ras-commander classes and functions to be actively edited and developed by end users. The folders "/workspace/, "/projects/", or "my_projects/" are included in the .gitignore, so users can place you custom scripts there for any project data they don't want to be tracked by git.
112
+
76
113
 
77
- ## Requirements
78
114
 
79
- - Tested with Python 3.11
80
- - HEC-RAS 6.2 or later (other versions may work, all testing was done with version 6.2 and above)
81
- - Detailed project workflows and/or existing libraries and code where ras-commander can be integrated.
115
+
82
116
 
83
- For a full list of dependencies, see the `requirements.txt` file.
117
+ ## Quick Start Guide
84
118
 
85
- ## Quick Start
86
119
  ```
87
120
  from ras_commander import init_ras_project, RasCmdr, RasPlan
88
121
  ```
89
122
 
90
- # Initialize a project
123
+ ### Initialize a project
91
124
  ```
92
125
  init_ras_project(r"/path/to/project", "6.5")
93
126
  ```
94
127
 
95
- # Execute a single plan
128
+ ### Execute a single plan
96
129
  ```
97
130
  RasCmdr.compute_plan("01", dest_folder=r"/path/to/results", overwrite_dest=True)
98
131
  ```
99
132
 
100
- # Execute plans in parallel
133
+ ### Execute plans in parallel
101
134
  ```
102
135
  results = RasCmdr.compute_parallel(
103
136
  plan_numbers=["01", "02"],
@@ -108,14 +141,14 @@ results = RasCmdr.compute_parallel(
108
141
  )
109
142
  ```
110
143
 
111
- # Modify a plan
144
+ ### Modify a plan
112
145
  ```
113
146
  RasPlan.set_geom("01", "02")
114
147
  ```
115
148
 
116
149
  Certainly! I'll provide you with an updated Key Components section and Project Organization diagram based on the current structure of the ras-commander library.
117
150
 
118
- ## Key Components
151
+ #### Key Components
119
152
 
120
153
  - `RasPrj`: Manages HEC-RAS projects, handling initialization and data loading
121
154
  - `RasCmdr`: Handles execution of HEC-RAS simulations
@@ -125,7 +158,7 @@ Certainly! I'll provide you with an updated Key Components section and Project O
125
158
  - `RasUtils`: Contains utility functions for file operations and data management
126
159
  - `RasExamples`: Manages and loads HEC-RAS example projects
127
160
 
128
- ### New Components:
161
+ #### New Components:
129
162
  - `HdfBase`: Core functionality for HDF file operations
130
163
  - `HdfBndry`: Enhanced boundary condition handling
131
164
  - `HdfMesh`: Comprehensive mesh data management
@@ -141,9 +174,9 @@ Certainly! I'll provide you with an updated Key Components section and Project O
141
174
  - `RasToGo`: Go-Consequences integration
142
175
  - `HdfPlot` & `HdfResultsPlot`: Specialized plotting utilities
143
176
 
144
- ## Project Organization Diagram
177
+ ### Project Organization Diagram
145
178
 
146
- ## Project Organization Diagram
179
+ ### Project Organization Diagram
147
180
 
148
181
  ```
149
182
  ras_commander
@@ -206,7 +239,7 @@ ras_commander
206
239
  └── requirements.txt
207
240
  ```
208
241
 
209
- ## Accessing HEC Examples through RasExamples
242
+ ### Accessing HEC Examples through RasExamples
210
243
 
211
244
  The `RasExamples` class provides functionality for quickly loading and managing HEC-RAS example projects. This is particularly useful for testing and development purposes.
212
245
 
@@ -227,7 +260,7 @@ projects = ras_examples.list_projects("Steady Flow")
227
260
  extracted_paths = ras_examples.extract_project(["Bald Eagle Creek", "Muncie"])
228
261
  ```
229
262
 
230
- ## RasPrj
263
+ ### RasPrj
231
264
 
232
265
  The `RasPrj` class is central to managing HEC-RAS projects within the ras-commander library. It handles project initialization, data loading, and provides access to project components.
233
266
 
@@ -243,18 +276,18 @@ Example usage:
243
276
  from ras_commander import RasPrj, init_ras_project
244
277
  ```
245
278
 
246
- ### Using the global ras object
279
+ #### Using the global ras object
247
280
  ```
248
281
  init_ras_project("/path/to/project", "6.5")
249
282
  ```
250
283
 
251
- ### Creating a custom RasPrj instance
284
+ #### Creating a custom RasPrj instance
252
285
  ```
253
286
  custom_project = RasPrj()
254
287
  init_ras_project("/path/to/another_project", "6.5", ras_instance=custom_project)
255
288
  ```
256
289
 
257
- ## RasHdf
290
+ ### RasHdf
258
291
 
259
292
  The `RasHdf` class provides utilities for working with HDF files in HEC-RAS projects, enabling easy access to simulation results and model data.
260
293
 
@@ -275,7 +308,7 @@ print(runtime_data)
275
308
  This class simplifies the process of extracting and analyzing data from HEC-RAS HDF output files, supporting tasks such as post-processing and result visualization.
276
309
 
277
310
 
278
- ### Infrastructure Analysis
311
+ #### Infrastructure Analysis
279
312
  ```python
280
313
  from ras_commander import HdfPipe, HdfPump
281
314
 
@@ -288,7 +321,7 @@ pump_stations = HdfPump.get_pump_stations(hdf_path)
288
321
  pump_performance = HdfPump.get_pump_station_summary(hdf_path)
289
322
  ```
290
323
 
291
- ### Advanced Results Analysis
324
+ #### Advanced Results Analysis
292
325
  ```python
293
326
  from ras_commander import HdfResultsMesh
294
327
 
@@ -301,7 +334,7 @@ from ras_commander import HdfResultsPlot
301
334
  HdfResultsPlot.plot_results_max_wsel(max_ws)
302
335
  ```
303
336
 
304
- ### Fluvial-Pluvial Analysis
337
+ #### Fluvial-Pluvial Analysis
305
338
  ```python
306
339
  from ras_commander import HdfFluvialPluvial
307
340
 
@@ -309,7 +342,7 @@ boundary = HdfFluvialPluvial.calculate_fluvial_pluvial_boundary(
309
342
  hdf_path,
310
343
  delta_t=12 # Time threshold in hours
311
344
  )
312
-
345
+ ```
313
346
 
314
347
  ## Documentation
315
348
 
@@ -324,7 +357,6 @@ Check out the `examples/` directory for sample scripts demonstrating various fea
324
357
  The ras-commander library is an ongoing project. Future plans include:
325
358
  - Integration of more advanced AI-driven features
326
359
  - Expansion of HMS and DSS functionalities
327
- - Enhanced GPU support for computational tasks
328
360
  - Community-driven development of new modules and features
329
361
 
330
362
  ## Related Resources
@@ -363,11 +395,13 @@ Additionally, we would like to acknowledge the following notable contributions a
363
395
  Xiaofeng Liu, Ph.D., P.E., Associate Professor, Department of Civil and Environmental Engineering
364
396
  Institute of Computational and Data Sciences, Penn State University
365
397
 
398
+ 3. Attribution: The[ffrd\rashdf'](https://github.com/fema-ffrd/rashdf) project by FEMA-FFRD (FEMA Future of Flood Risk Data) was incorporated, revised, adapted and extended in rascommander's RasHDF libaries (where noted).
399
+
366
400
  These acknowledgments recognize the contributions and inspirations that have helped shape RAS Commander, ensuring proper attribution for the ideas and code that have influenced its development.
367
401
 
368
- 3. Chris Goodell, "Breaking the HEC-RAS Code" - Studied and used as a reference for understanding the inner workings of HEC-RAS, providing valuable insights into the software's functionality and structure.
402
+ 4. Chris Goodell, "Breaking the HEC-RAS Code" - Studied and used as a reference for understanding the inner workings of HEC-RAS, providing valuable insights into the software's functionality and structure.
369
403
 
370
- 4. [HEC-Commander Tools](https://github.com/billk-FM/HEC-Commander) - Inspiration and initial code base for the development of RAS Commander.
404
+ 5. [HEC-Commander Tools](https://github.com/billk-FM/HEC-Commander) - Inspiration and initial code base for the development of RAS Commander.
371
405
 
372
406
 
373
407
  ## Official RAS Commander AI-Generated Songs:
@@ -376,8 +410,17 @@ These acknowledgments recognize the contributions and inspirations that have hel
376
410
 
377
411
  [No More Wait and See (Cajun Zydeco)](https://suno.com/song/4441c45d-f6cd-47b9-8fbc-1f7b277ee8ed)
378
412
 
413
+ ## Other Resources
414
+
415
+ Notebook version of RAS-Commander: [RAS-Commander Notebook in the HEC-Commander Tools Repository](https://github.com/billk-FM/HEC-Commander/tree/main/RAS-Commander)
416
+ Youtube Tutorials for HEC-Commander Tools and RAS-Commander: [GPT-Commander on YouTube](https://www.youtube.com/@GPT_Commander/videos)
417
+
418
+ ## LICENSE
419
+
420
+ This software is released under the MIT license.
421
+
379
422
 
380
423
  ## Contact
381
424
 
382
425
  For questions, suggestions, or support, please contact:
383
- William Katzenmeyer, P.E., C.F.M. - billk@fenstermaker.com
426
+ William Katzenmeyer, P.E., C.F.M. - heccommander@gmail.com
@@ -1,7 +1,7 @@
1
- ras_commander/Decorators.py,sha256=M5r5cHz_yy9YTHNEoytO9uwWbv_S-YYUk2QHNamJJJs,5848
2
- ras_commander/HdfBase.py,sha256=Bmj5mR9Ubr8gsthmjgDzlZk4Dh2tReE-zUgjXoNUsRM,13671
1
+ ras_commander/Decorators.py,sha256=v0xPvIs3LbPlRJXvSHNtMFhygWEBo7f-0j_fCp7lXnQ,6030
2
+ ras_commander/HdfBase.py,sha256=Jws6Y8JFkharuiM6Br5ivp6MS64X2fL6y87FOpe3FQw,14219
3
3
  ras_commander/HdfBndry.py,sha256=m81NdCu_ER-AAZpEkQPQka7pYv3sm7vEZevq3SIt2pw,12545
4
- ras_commander/HdfFluvialPluvial.py,sha256=dK79kqP9cQi4JmUj8420TkEDXoYFv_hVRxuuLDJhZYA,25380
4
+ ras_commander/HdfFluvialPluvial.py,sha256=dlqoFX5i7uSA2BvuRNrV-Fg-z2JaeUxY86_fbZAdGqI,25933
5
5
  ras_commander/HdfInfiltration.py,sha256=QVigQJjYeQNutbazGHhbTmEuIVCb9gIb2f4yM-wyUtQ,15269
6
6
  ras_commander/HdfMesh.py,sha256=zI_4AqxDxb2_31G9RUmWibyld6KDMGhDpI3F8qwzVAw,19139
7
7
  ras_commander/HdfPipe.py,sha256=m-yvPL2GIP23NKt2tcwzOlS7khvgcDPGAshlTPMUAeI,32154
@@ -9,26 +9,26 @@ ras_commander/HdfPlan.py,sha256=NW6g2kS74y44Ci1P9iMo7IKUfR0eYOaJn1QbzsRM1co,1041
9
9
  ras_commander/HdfPlot.py,sha256=7MNI5T9qIz-Ava1RdlnB6O9oJElE5BEB29QVF5Y2Xuc,3401
10
10
  ras_commander/HdfPump.py,sha256=Vc2ff16kRISR7jwtnaAqxI0p-gfBSuZKzR3rQbBLQoE,12951
11
11
  ras_commander/HdfResultsMesh.py,sha256=T1afgFsJ1NaqmOJEJfMUBm1ZZ5pwbd82aAqeEkHNaLk,30959
12
- ras_commander/HdfResultsPlan.py,sha256=HoN3wvhj1wtkW-M20UHH9skntDqEvJEgeYeO_QBLF2w,11974
12
+ ras_commander/HdfResultsPlan.py,sha256=3FMaVrN_Bj3EZOJn7WZQ83e9en2LUwZ2sq5e6O03XOM,15823
13
13
  ras_commander/HdfResultsPlot.py,sha256=ylzfT78CfgoDO0XAlRwlgMNRzvNQYBMn9eyXyBfjv_w,7660
14
14
  ras_commander/HdfResultsXsec.py,sha256=-P7nXnbjOLAeUnrdSC_lJQSfzrlWKmDF9Z5gEjmxbJY,13031
15
- ras_commander/HdfStruc.py,sha256=yzD4_eZLgwZDS3GdYVWqd85jRpdlRdVdbHHfPYTmwjA,12703
15
+ ras_commander/HdfStruc.py,sha256=-Nyb9IhxTB1HdNLpn5lIRQ4j9_gZZc_ekNp_YOFe7Ik,12711
16
16
  ras_commander/HdfUtils.py,sha256=VkIKAXBrLwTlk2VtXSO-W3RU-NHpfHbE1QcZUZgl-t8,15248
17
- ras_commander/HdfXsec.py,sha256=R3lrRZ42L80n6nwrtihvHtit-Y2jI9cdDGzekAyoJ-s,27348
18
- ras_commander/LoggingConfig.py,sha256=p1OJkQj5dsDdyBQqF0HWsvbsU88n9cYOc3YB2MMBYiw,2666
19
- ras_commander/RasCmdr.py,sha256=N2PI5n0P3ClLUPOPNcONJHGJYF-fIU5o0GXwHv4VATE,25271
17
+ ras_commander/HdfXsec.py,sha256=flREnFFrIZu4SSKGRQeX9w3SS49q0UWPJnq4zO7DbUM,27342
18
+ ras_commander/LoggingConfig.py,sha256=gWe5K5XTmMQpSczsTysAqpC9my24i_IyM8dvD85fxYg,2704
19
+ ras_commander/RasCmdr.py,sha256=2i9gR5koFfBLwvhYAbNgQFNKKUKqxD1Hf6T9SN9sx-s,26558
20
20
  ras_commander/RasExamples.py,sha256=eYlRKryCG88FN5p23TnA1-E2Bxuaz3OxjdHPHJSqdB8,17006
21
21
  ras_commander/RasGeo.py,sha256=M0sVNKlWmmbve8iMXLWq25WgbxqLWBo7_1oDg_rALzU,5607
22
22
  ras_commander/RasGpt.py,sha256=N_7p2nucWrBBXdB2k2ZKvOeOdXNmFD9dIY3W7_5i5nw,1206
23
23
  ras_commander/RasMapper.py,sha256=A7xupixCmgXFiSfQs3oWBMBstrO8XcxieMeZWKTcbPQ,3271
24
- ras_commander/RasPlan.py,sha256=jt0adLtwGjrKC90uuBXYgHpVyV3cKgD1Q_zkKiI04fc,52742
25
- ras_commander/RasPrj.py,sha256=a1Rju4G0vZqD8RY7Qj35f_oyXXF-csgXO7hHJ8TfIV8,38103
24
+ ras_commander/RasPlan.py,sha256=1HAn31oyz0hGv2r7GVNCLWcAZFcRjYTBNdL19mabvmw,53651
25
+ ras_commander/RasPrj.py,sha256=9F0UVQZ2RfjhDf5717aJcEChL6z5BD8agGWAlUvqe0E,37472
26
26
  ras_commander/RasToGo.py,sha256=TKujfaV1xQhFaOddF4g2ogGy6ky-CLlfelSMPD2J3Nk,1223
27
- ras_commander/RasUnsteady.py,sha256=NWZbmB3-HT0W00K4-zxFN9OF8H_HlOY64nM72sHicWg,31154
27
+ ras_commander/RasUnsteady.py,sha256=KfCXAag-_bPwwS3JbPZH-s4hbaoHACO0mlRnGrzbFgA,32092
28
28
  ras_commander/RasUtils.py,sha256=P2-aBL61kdRINsjnBpstZVD6VVc7hI_D3RUXqr6ldmc,34863
29
29
  ras_commander/__init__.py,sha256=vhnZQaejmyFVFP5fcYxAc4A562o8KFcnZNkcY6J5xwY,2068
30
- ras_commander-0.52.0.dist-info/LICENSE,sha256=_pbd6qHnlsz1iQ-ozDW_49r86BZT6CRwO2iBtw0iN6M,457
31
- ras_commander-0.52.0.dist-info/METADATA,sha256=wg9l08JoU1IX27wMf32hpzXQp1PPYQe5DAyYENRShi4,17813
32
- ras_commander-0.52.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
33
- ras_commander-0.52.0.dist-info/top_level.txt,sha256=i76S7eKLFC8doKcXDl3aiOr9RwT06G8adI6YuKbQDaA,14
34
- ras_commander-0.52.0.dist-info/RECORD,,
30
+ ras_commander-0.53.0.dist-info/LICENSE,sha256=_pbd6qHnlsz1iQ-ozDW_49r86BZT6CRwO2iBtw0iN6M,457
31
+ ras_commander-0.53.0.dist-info/METADATA,sha256=0r9UChQy1b-gbu-pVBvX8cTixyQ7qAznGjCsrUu1hpg,21975
32
+ ras_commander-0.53.0.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
33
+ ras_commander-0.53.0.dist-info/top_level.txt,sha256=i76S7eKLFC8doKcXDl3aiOr9RwT06G8adI6YuKbQDaA,14
34
+ ras_commander-0.53.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5