├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── dependencies.py ├── examples ├── convergentDivergent.zip └── convergentDivergent │ ├── 0 │ ├── U │ └── p │ ├── constant │ └── transportProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── icons └── custom_icons │ ├── build_mesh.png │ ├── build_mesh_2.png │ ├── file-browser-1.png │ ├── file-browser-2.png │ ├── fossee_logo.png │ ├── new_mesh_file.png │ ├── new_mesh_file_2.png │ ├── venturial_logo.png │ ├── warning_sign_1.png │ └── warning_sign_2.png ├── images ├── inst.png ├── pref.png └── vent.png ├── lib ├── global_properties.py ├── preferences_properties.py └── update_methods.py ├── misc └── sample_controller.py ├── models ├── blockmesh │ ├── boundary_control_operators.py │ ├── design_operators.py │ ├── edge_operators_old.py │ ├── edges_panel_operators_old.py │ ├── geometry_designer_operators.py │ └── get_vertices_operators.py ├── edge_gen_algorithms.py ├── edges_panel_operators.py ├── header │ ├── developer_menu_operators.py │ ├── file_handling_operators.py │ ├── general_operators.py │ └── help_menu_operators.py ├── mainpanel_sublayout_operators.py ├── run_panel_operators.py ├── snappyhexmesh │ ├── castellated_operators.py │ ├── dictionary_operators.py │ ├── dictionary_writers.py │ ├── file_operators.py │ ├── geometry_operators.py │ ├── layer_operators.py │ ├── mesh_quality_operators.py │ ├── snap_operators.py │ ├── snappydict_writer.py │ ├── tooltip_updater.py │ └── tooltips.py ├── tutorials_menu_operators.py ├── venturial_nodes │ ├── ButtonDraw_UI_Header.py │ ├── DataConvertore.py │ ├── Examples │ │ ├── Collection_Property.py │ │ └── custom_nodes_template.py │ ├── Nodes │ │ ├── Dict_Node.py │ │ ├── Dim_Set_Node.py │ │ ├── Enm_Node.py │ │ ├── Flt_Node.py │ │ ├── Int_Node.py │ │ ├── Key_Node.py │ │ ├── List_Node.py │ │ ├── MultiValue_Node.py │ │ ├── Node.py │ │ ├── Output_node.py │ │ ├── Str_Node.py │ │ ├── Tensor_Node.py │ │ └── Vector_Node.py │ ├── Operator │ │ ├── List_Operators.py │ │ └── Node_Links_Swapper.py │ ├── __init__.py │ └── utils │ │ ├── Ven_Export.py │ │ ├── Ven_Import.py │ │ └── __init__.py └── visualizer_operators.py ├── preferences ├── jsongenerate.py ├── sample_json.json ├── system_default_settings.json └── user_custom_settings.json ├── startup ├── get_recents_list.py └── get_tutorials_list.py ├── tutorials ├── convergentDivergent.zip ├── convergentDivergent │ ├── 0 │ │ ├── U │ │ └── p │ ├── constant │ │ └── transportProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── tut1.json ├── tut2.json ├── tut3.json └── tut4.json ├── user_data ├── recent1.json ├── recent2.json ├── recent3.json ├── recent4.json ├── recent5.json ├── recent6.json └── recent7.json ├── utils ├── blender_package_handler.py ├── catmull-rom_splines.py ├── custom_icon_object_generator.py ├── default_properties.py ├── delete__pycache__.py ├── get_enum_property_values.py ├── helper.py ├── interface.py ├── mainpanel_categories.py ├── mesh_dictionary_controller.py ├── open_on_startup.py ├── sample_recent_json_generator.py ├── sample_tutorial_json_generator.py └── unique_char_generator.py └── views ├── boundary_control.py ├── edges_panel.py ├── geometry_designer.py ├── get_boundaries.py ├── get_vertices.py ├── header ├── layout.py └── view.py ├── mainpanel ├── layout.py ├── meshing_tools │ ├── blockmesh.py │ └── snappyhexmesh.py ├── recents.py ├── tutorials.py ├── view.py └── visualizer.py ├── run_panel.py ├── schemas └── UIList_schemas.py └── user_mode_view.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/__init__.py -------------------------------------------------------------------------------- /dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/dependencies.py -------------------------------------------------------------------------------- /examples/convergentDivergent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/examples/convergentDivergent.zip -------------------------------------------------------------------------------- /examples/convergentDivergent/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/examples/convergentDivergent/0/U -------------------------------------------------------------------------------- /examples/convergentDivergent/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/examples/convergentDivergent/0/p -------------------------------------------------------------------------------- /examples/convergentDivergent/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/examples/convergentDivergent/constant/transportProperties -------------------------------------------------------------------------------- /examples/convergentDivergent/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/examples/convergentDivergent/system/blockMeshDict -------------------------------------------------------------------------------- /examples/convergentDivergent/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/examples/convergentDivergent/system/controlDict -------------------------------------------------------------------------------- /examples/convergentDivergent/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/examples/convergentDivergent/system/fvSchemes -------------------------------------------------------------------------------- /examples/convergentDivergent/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/examples/convergentDivergent/system/fvSolution -------------------------------------------------------------------------------- /icons/custom_icons/build_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/build_mesh.png -------------------------------------------------------------------------------- /icons/custom_icons/build_mesh_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/build_mesh_2.png -------------------------------------------------------------------------------- /icons/custom_icons/file-browser-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/file-browser-1.png -------------------------------------------------------------------------------- /icons/custom_icons/file-browser-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/file-browser-2.png -------------------------------------------------------------------------------- /icons/custom_icons/fossee_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/fossee_logo.png -------------------------------------------------------------------------------- /icons/custom_icons/new_mesh_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/new_mesh_file.png -------------------------------------------------------------------------------- /icons/custom_icons/new_mesh_file_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/new_mesh_file_2.png -------------------------------------------------------------------------------- /icons/custom_icons/venturial_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/venturial_logo.png -------------------------------------------------------------------------------- /icons/custom_icons/warning_sign_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/warning_sign_1.png -------------------------------------------------------------------------------- /icons/custom_icons/warning_sign_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/icons/custom_icons/warning_sign_2.png -------------------------------------------------------------------------------- /images/inst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/images/inst.png -------------------------------------------------------------------------------- /images/pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/images/pref.png -------------------------------------------------------------------------------- /images/vent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/images/vent.png -------------------------------------------------------------------------------- /lib/global_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/lib/global_properties.py -------------------------------------------------------------------------------- /lib/preferences_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/lib/preferences_properties.py -------------------------------------------------------------------------------- /lib/update_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/lib/update_methods.py -------------------------------------------------------------------------------- /misc/sample_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/misc/sample_controller.py -------------------------------------------------------------------------------- /models/blockmesh/boundary_control_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/blockmesh/boundary_control_operators.py -------------------------------------------------------------------------------- /models/blockmesh/design_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/blockmesh/design_operators.py -------------------------------------------------------------------------------- /models/blockmesh/edge_operators_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/blockmesh/edge_operators_old.py -------------------------------------------------------------------------------- /models/blockmesh/edges_panel_operators_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/blockmesh/edges_panel_operators_old.py -------------------------------------------------------------------------------- /models/blockmesh/geometry_designer_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/blockmesh/geometry_designer_operators.py -------------------------------------------------------------------------------- /models/blockmesh/get_vertices_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/blockmesh/get_vertices_operators.py -------------------------------------------------------------------------------- /models/edge_gen_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/edge_gen_algorithms.py -------------------------------------------------------------------------------- /models/edges_panel_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/edges_panel_operators.py -------------------------------------------------------------------------------- /models/header/developer_menu_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/header/developer_menu_operators.py -------------------------------------------------------------------------------- /models/header/file_handling_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/header/file_handling_operators.py -------------------------------------------------------------------------------- /models/header/general_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/header/general_operators.py -------------------------------------------------------------------------------- /models/header/help_menu_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/header/help_menu_operators.py -------------------------------------------------------------------------------- /models/mainpanel_sublayout_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/mainpanel_sublayout_operators.py -------------------------------------------------------------------------------- /models/run_panel_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/run_panel_operators.py -------------------------------------------------------------------------------- /models/snappyhexmesh/castellated_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/castellated_operators.py -------------------------------------------------------------------------------- /models/snappyhexmesh/dictionary_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/dictionary_operators.py -------------------------------------------------------------------------------- /models/snappyhexmesh/dictionary_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/dictionary_writers.py -------------------------------------------------------------------------------- /models/snappyhexmesh/file_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/file_operators.py -------------------------------------------------------------------------------- /models/snappyhexmesh/geometry_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/geometry_operators.py -------------------------------------------------------------------------------- /models/snappyhexmesh/layer_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/layer_operators.py -------------------------------------------------------------------------------- /models/snappyhexmesh/mesh_quality_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/mesh_quality_operators.py -------------------------------------------------------------------------------- /models/snappyhexmesh/snap_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/snap_operators.py -------------------------------------------------------------------------------- /models/snappyhexmesh/snappydict_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/snappydict_writer.py -------------------------------------------------------------------------------- /models/snappyhexmesh/tooltip_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/tooltip_updater.py -------------------------------------------------------------------------------- /models/snappyhexmesh/tooltips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/snappyhexmesh/tooltips.py -------------------------------------------------------------------------------- /models/tutorials_menu_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/tutorials_menu_operators.py -------------------------------------------------------------------------------- /models/venturial_nodes/ButtonDraw_UI_Header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/ButtonDraw_UI_Header.py -------------------------------------------------------------------------------- /models/venturial_nodes/DataConvertore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/DataConvertore.py -------------------------------------------------------------------------------- /models/venturial_nodes/Examples/Collection_Property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Examples/Collection_Property.py -------------------------------------------------------------------------------- /models/venturial_nodes/Examples/custom_nodes_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Examples/custom_nodes_template.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Dict_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Dict_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Dim_Set_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Dim_Set_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Enm_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Enm_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Flt_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Flt_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Int_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Int_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Key_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Key_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/List_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/List_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/MultiValue_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/MultiValue_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Output_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Output_node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Str_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Str_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Tensor_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Tensor_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Nodes/Vector_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Nodes/Vector_Node.py -------------------------------------------------------------------------------- /models/venturial_nodes/Operator/List_Operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Operator/List_Operators.py -------------------------------------------------------------------------------- /models/venturial_nodes/Operator/Node_Links_Swapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/Operator/Node_Links_Swapper.py -------------------------------------------------------------------------------- /models/venturial_nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/__init__.py -------------------------------------------------------------------------------- /models/venturial_nodes/utils/Ven_Export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/utils/Ven_Export.py -------------------------------------------------------------------------------- /models/venturial_nodes/utils/Ven_Import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/venturial_nodes/utils/Ven_Import.py -------------------------------------------------------------------------------- /models/venturial_nodes/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/visualizer_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/models/visualizer_operators.py -------------------------------------------------------------------------------- /preferences/jsongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/preferences/jsongenerate.py -------------------------------------------------------------------------------- /preferences/sample_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/preferences/sample_json.json -------------------------------------------------------------------------------- /preferences/system_default_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/preferences/system_default_settings.json -------------------------------------------------------------------------------- /preferences/user_custom_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/preferences/user_custom_settings.json -------------------------------------------------------------------------------- /startup/get_recents_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/startup/get_recents_list.py -------------------------------------------------------------------------------- /startup/get_tutorials_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/startup/get_tutorials_list.py -------------------------------------------------------------------------------- /tutorials/convergentDivergent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/convergentDivergent.zip -------------------------------------------------------------------------------- /tutorials/convergentDivergent/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/convergentDivergent/0/U -------------------------------------------------------------------------------- /tutorials/convergentDivergent/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/convergentDivergent/0/p -------------------------------------------------------------------------------- /tutorials/convergentDivergent/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/convergentDivergent/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/convergentDivergent/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/convergentDivergent/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/convergentDivergent/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/convergentDivergent/system/controlDict -------------------------------------------------------------------------------- /tutorials/convergentDivergent/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/convergentDivergent/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/convergentDivergent/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/convergentDivergent/system/fvSolution -------------------------------------------------------------------------------- /tutorials/tut1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/tut1.json -------------------------------------------------------------------------------- /tutorials/tut2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/tut2.json -------------------------------------------------------------------------------- /tutorials/tut3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/tut3.json -------------------------------------------------------------------------------- /tutorials/tut4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/tutorials/tut4.json -------------------------------------------------------------------------------- /user_data/recent1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/user_data/recent1.json -------------------------------------------------------------------------------- /user_data/recent2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/user_data/recent2.json -------------------------------------------------------------------------------- /user_data/recent3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/user_data/recent3.json -------------------------------------------------------------------------------- /user_data/recent4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/user_data/recent4.json -------------------------------------------------------------------------------- /user_data/recent5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/user_data/recent5.json -------------------------------------------------------------------------------- /user_data/recent6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/user_data/recent6.json -------------------------------------------------------------------------------- /user_data/recent7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/user_data/recent7.json -------------------------------------------------------------------------------- /utils/blender_package_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/blender_package_handler.py -------------------------------------------------------------------------------- /utils/catmull-rom_splines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/catmull-rom_splines.py -------------------------------------------------------------------------------- /utils/custom_icon_object_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/custom_icon_object_generator.py -------------------------------------------------------------------------------- /utils/default_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/default_properties.py -------------------------------------------------------------------------------- /utils/delete__pycache__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/delete__pycache__.py -------------------------------------------------------------------------------- /utils/get_enum_property_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/get_enum_property_values.py -------------------------------------------------------------------------------- /utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/helper.py -------------------------------------------------------------------------------- /utils/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/interface.py -------------------------------------------------------------------------------- /utils/mainpanel_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/mainpanel_categories.py -------------------------------------------------------------------------------- /utils/mesh_dictionary_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/mesh_dictionary_controller.py -------------------------------------------------------------------------------- /utils/open_on_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/open_on_startup.py -------------------------------------------------------------------------------- /utils/sample_recent_json_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/sample_recent_json_generator.py -------------------------------------------------------------------------------- /utils/sample_tutorial_json_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/sample_tutorial_json_generator.py -------------------------------------------------------------------------------- /utils/unique_char_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/utils/unique_char_generator.py -------------------------------------------------------------------------------- /views/boundary_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/boundary_control.py -------------------------------------------------------------------------------- /views/edges_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/edges_panel.py -------------------------------------------------------------------------------- /views/geometry_designer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/geometry_designer.py -------------------------------------------------------------------------------- /views/get_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/get_boundaries.py -------------------------------------------------------------------------------- /views/get_vertices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/get_vertices.py -------------------------------------------------------------------------------- /views/header/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/header/layout.py -------------------------------------------------------------------------------- /views/header/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/header/view.py -------------------------------------------------------------------------------- /views/mainpanel/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/mainpanel/layout.py -------------------------------------------------------------------------------- /views/mainpanel/meshing_tools/blockmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/mainpanel/meshing_tools/blockmesh.py -------------------------------------------------------------------------------- /views/mainpanel/meshing_tools/snappyhexmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/mainpanel/meshing_tools/snappyhexmesh.py -------------------------------------------------------------------------------- /views/mainpanel/recents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/mainpanel/recents.py -------------------------------------------------------------------------------- /views/mainpanel/tutorials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/mainpanel/tutorials.py -------------------------------------------------------------------------------- /views/mainpanel/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/mainpanel/view.py -------------------------------------------------------------------------------- /views/mainpanel/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/mainpanel/visualizer.py -------------------------------------------------------------------------------- /views/run_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/run_panel.py -------------------------------------------------------------------------------- /views/schemas/UIList_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/schemas/UIList_schemas.py -------------------------------------------------------------------------------- /views/user_mode_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/venturial/HEAD/views/user_mode_view.py --------------------------------------------------------------------------------