Revision d75660312ab9f3abbdd2414c03d074dd6a0c5ead authored by Thomas Fischer on 31 May 2023, 13:11:45 UTC, committed by Thomas Fischer on 19 June 2023, 06:44:25 UTC
1 parent 9372147
Raw File
meshes.smk
rule generate_square_mesh:
    output:
        "{mesh_name_prefix,\w+}_{size,\d+}_{lx,\d+}x{ly,\d+}_{type}.vtu"
    shell:
        """
        generateStructuredMesh -e {wildcards.type} \
            --lx {wildcards.lx} --ly {wildcards.ly} \
            --nx {wildcards.size} --ny {wildcards.size} \
            -o {output}
        """
back to top