Utils
jax_lab.core.utils.read_raw_volume
Read a raw binary volume using NumPy.
Parameters
path (str or Path): Path to the raw file.
shape (tuple[int, …]): Volume shape, e.g. (1000, 1000, 1000).
dtype (str or np.dtype): Element type without endianness, e.g. “u1”, “i1”, “u2”, “f4”. For 8-bit char data use “u1” (unsigned) or “i1” (signed).
endian (str): “<” little-endian, “>” big-endian.
order (str): “C” for C-order, “F” for Fortran-order.
use_memmap (bool): If True, return a memmap (does not load full array into RAM).
Returns
np.ndarray or np.memmap
Source code in jax_lab/core/utils.py
jax_lab.core.utils.downsample_field
Downsample a JAX array by a factor of factor along each axis.
Parameters
field (jax.numpy.ndarray): The input vector field to be downsampled. This should be a 3D or 4D JAX array where the last dimension is 2 or 3 (vector components).
factor (int): The factor by which to downsample the field. The dimensions of the field will be divided by this factor.
method (str, optional): The method to use for downsampling. Default is ‘bicubic’.
Returns
jax.numpy.ndarray: The downsampled field.
Source code in jax_lab/core/utils.py
jax_lab.core.utils.save_image
Save an image of a field at a given timestep.
Parameters
timestep (int): The timestep at which the field is being saved.
fld (jax.numpy.ndarray): The field to be saved. This should be a 2D or 3D JAX array. If the field is 3D, the magnitude of the field will be calculated and saved.
prefix (str, optional): A prefix to be added to the filename. The filename will be the name of the main script file by default.
Returns
None
Notes
This function saves the field as an image in the PNG format. The filename is based on the name of the main script file, the provided prefix, and the timestep number. If the field is 3D, the magnitude of the field is calculated and saved. The image is saved with the ‘nipy_spectral’ colormap and the origin set to ‘lower’.
Source code in jax_lab/core/utils.py
jax_lab.core.utils.save_fields_hdf5_xdmf
save_fields_hdf5_xdmf(timestep, fields, output_dir='.', prefix='fields', origin=(0.0, 0.0, 0.0), spacing=(1.0, 1.0, 1.0), compression='gzip', compression_level=5, shuffle=True, target_chunk_bytes=2 * 1024 * 1024, multi_timestep_file=None, static_fields=None, static_fields_file=None, libver='earliest')
Save 2D/3D cell-centered fields (dict of arrays) as HDF5/XDMF.
Parameters
timestep (int): The timestep number to be associated with the saved fields.
fields (Dict[str, np.ndarray]): A dictionary of fields to be saved. Each field must be an array-like object with dimensions (nx, ny) for 2D fields or (nx, ny, nz) for 3D fields, where:
- nx : int, number of grid points along the x-axis
- ny : int, number of grid points along the y-axis
- nz : int, number of grid points along the z-axis (for 3D fields only)
The key value for each field in the dictionary must be a string containing the name of the field.
output_dir (str, optional, default: ‘.’): The directory in which to save the HDF5 files. Defaults to the current directory.
prefix (str, optional, default: ‘fields’): A prefix to be added to the filename. Defaults to ‘fields’.
origin (tuple[float]): The origin used for the file.
spacing (tuple[float]): Spacing used for data points.
compression (str): Compression algorithm used, supported options: lzf, gzip (default) and szip.
compression_level (int): Options for the compression filter.
shuffle (bool): Whether shuffle filter is applied. True by default.
target_chunk_bytes (int): Chunk size to be used in bytes. 2 * 1024 * 1024 (2 MB) by default.
multi_timestep_file (bool): Store data for all timesteps in a single, consolidated file.
static_fields (dict, Optional): Pass a dict for static fields that doesn’t change. Useful for passing for non-changing values (for e.g., mask array). Static fields are stored once and referenced from all timesteps.
static_fields_file (str, Optional): Name of the file where static field is stored. Default: {prefix}_static.hdf5
libver (str, Optional): Library version for HDF5 export. Default: “earliest” for compatability with ParaView
Returns
None
Notes
Single-step mode: {output_dir}/{prefix}{timestep:07d}.hdf5 {output_dir}/{prefix}.xdmf {output_dir}/{prefix}_series.xdmf
Multi-step mode (append): {multi_timestep_file}
Source code in jax_lab/core/utils.py
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 | |
jax_lab.core.utils.save_fields_vtk
Save VTK fields to the specified directory.
Parameters
timestep (int): The timestep number to be associated with the saved fields.
fields (Dict[str, np.ndarray]): A dictionary of fields to be saved. Each field must be an array-like object with dimensions (nx, ny) for 2D fields or (nx, ny, nz) for 3D fields, where: - nx : int, number of grid points along the x-axis - ny : int, number of grid points along the y-axis - nz : int, number of grid points along the z-axis (for 3D fields only) The key value for each field in the dictionary must be a string containing the name of the field.
output_dir (str, optional, default: ‘.’): The directory in which to save the VTK files. Defaults to the current directory.
prefix (str, optional, default: ‘fields’): A prefix to be added to the filename. Defaults to ‘fields’.
Returns
None
Notes
This function saves the VTK fields in the specified directory, with filenames based on the provided timestep number and the filename. For example, if the timestep number is 10 and the file name is fields, the VTK file will be saved as ‘fields_0000010.vtk’in the specified directory.
Source code in jax_lab/core/utils.py
jax_lab.core.utils.live_volume_rendering
Live rendering of a 3D volume using pyvista.
Parameters
timestep (int): Current simulation timestep.
field (numpy.ndarray): Three-dimensional field to render.
Returns
None
Notes
This function uses pyvista to render a 3D volume. The volume is rendered with a colormap based on the field values. The colormap is updated every 0.1 seconds to reflect changes to the field.
Source code in jax_lab/core/utils.py
jax_lab.core.utils.save_BCs_vtk
Save boundary conditions as VTK format to the specified directory.
Parameters
timestep (int): The timestep number to be associated with the saved fields.
BCs (List[BC]): A list of boundary conditions to be saved. Each boundary condition must be an object of type BC.
grid_info (dict): Grid dimensions and dimensionality.
output_dir (str, optional): Directory for the VTK file. Defaults to the current directory.
Returns
None
Notes
This function saves the boundary conditions in the specified directory, with filenames based on the provided timestep number and the filename. For example, if the timestep number is 10, the VTK file will be saved as ‘BCs_0000010.vtk’in the specified directory.
Source code in jax_lab/core/utils.py
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 | |
jax_lab.core.utils.rotate_geometry
Rotates a voxelized mesh around a given axis.
Parameters
indices (array-like): The indices of the voxels in the mesh.
origin (array-like): The coordinates of the origin of the rotation axis.
axis (array-like): The direction vector of the rotation axis. This should be a 3-element sequence.
angle (float): The angle by which to rotate the mesh, in radians.
Returns
tuple: The indices of the voxels in the rotated mesh.
Notes
This function rotates the mesh around the supplied origin using an axis-angle rotation matrix.
Source code in jax_lab/core/utils.py
jax_lab.core.utils.voxelize_stl
Converts an STL file to a voxelized mesh.
Parameters
stl_filename (str): The name of the STL file to be voxelized.
length_lbm_unit (float, optional): The unit length in LBM. Either this or ‘pitch’ must be provided.
transformation_matrix (array-like, optional): A transformation matrix to be applied to the mesh before voxelization.
pitch (float, optional): The pitch of the voxel grid. Either this or ‘length_lbm_unit’ must be provided.
**kwargs (dict): Supports the deprecated ‘tranformation_matrix’ spelling.
Returns
trimesh.VoxelGrid, float: The voxelized mesh and the pitch of the voxel grid.
Notes
This function uses the trimesh library to load the STL file and voxelized the mesh. If a transformation matrix is provided, it is applied to the mesh before voxelization. The pitch of the voxel grid is calculated based on the maximum extent of the mesh and the provided lattice Boltzmann unit length, unless a pitch is provided directly.