├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DesignSPHysics.FCMacro ├── LICENSE ├── README.md ├── default-config.json ├── default-materials.json ├── images ├── clock.png ├── down_arrow.png ├── file_mov.png ├── flowtool_template.jpg ├── focused_wave.png ├── icon.svg ├── irregular_wave.png ├── left-arrow.png ├── load.png ├── logo.png ├── movement.png ├── new.png ├── regular_wave.png ├── run.png ├── run_gencase.png ├── save.png ├── trash.png └── up_arrow.png ├── mod ├── __init__.py ├── appmode.py ├── constants.py ├── dataobjects │ ├── __init__.py │ ├── acceleration_input │ │ ├── acceleration_input.py │ │ └── acceleration_input_data.py │ ├── bathymetry_form_data.py │ ├── case.py │ ├── case_information.py │ ├── chrono │ │ ├── chrono_collision_dp.py │ │ ├── chrono_config.py │ │ ├── chrono_csv_intervals.py │ │ ├── chrono_link_coulomb_damping.py │ │ ├── chrono_link_hinge.py │ │ ├── chrono_link_linear_spring.py │ │ ├── chrono_link_point_line.py │ │ ├── chrono_link_pulley.py │ │ ├── chrono_link_spheric.py │ │ ├── chrono_object.py │ │ └── chrono_scale_scheme.py │ ├── configuration │ │ ├── application_settings.py │ │ ├── constants.py │ │ ├── domain_fixed_parameter.py │ │ ├── executable_paths.py │ │ ├── execution_parameters.py │ │ ├── periodicity.py │ │ ├── periodicity_info.py │ │ ├── post_processing_settings.py │ │ ├── sd_position_property.py │ │ └── simulation_domain.py │ ├── damping.py │ ├── flow_tool_xml_box.py │ ├── gauges │ │ ├── flow_gauge.py │ │ ├── force_gauge.py │ │ ├── gauge_base.py │ │ ├── gauges_data.py │ │ ├── max_z_gauge.py │ │ ├── mesh_gauge.py │ │ ├── swl_gauge.py │ │ └── velocity_gauge.py │ ├── inletoutlet │ │ ├── __init__.py │ │ ├── inlet_outlet_config.py │ │ ├── inlet_outlet_density_info.py │ │ ├── inlet_outlet_elevation_info.py │ │ ├── inlet_outlet_velocity_info.py │ │ ├── inlet_outlet_zone.py │ │ ├── inlet_outlet_zone_box_generator.py │ │ ├── inlet_outlet_zone_circle_generator.py │ │ ├── inlet_outlet_zone_direction.py │ │ ├── inlet_outlet_zone_info.py │ │ ├── inlet_outlet_zone_line_generator.py │ │ ├── inlet_outlet_zone_mk_generator.py │ │ ├── inlet_outlet_zone_rotation.py │ │ └── velocities │ │ │ ├── jet_circle.py │ │ │ ├── linear_velocity.py │ │ │ ├── parabolic_velocity.py │ │ │ └── velocity_mesh_data.py │ ├── moorings │ │ ├── __init__.py │ │ ├── moordynplus │ │ │ ├── __init__.py │ │ │ ├── moordynplus_body.py │ │ │ ├── moordynplus_configuration.py │ │ │ ├── moordynplus_connect.py │ │ │ ├── moordynplus_connect_connection.py │ │ │ ├── moordynplus_fix_connection.py │ │ │ ├── moordynplus_line.py │ │ │ ├── moordynplus_line_default_configuration.py │ │ │ ├── moordynplus_output_configuration.py │ │ │ ├── moordynplus_solver_options.py │ │ │ └── moordynplus_vessel_connection.py │ │ ├── moorings_configuration.py │ │ └── moorings_save_options.py │ ├── motion │ │ ├── __init__.py │ │ ├── acc_cir_motion.py │ │ ├── acc_rect_motion.py │ │ ├── acc_rot_motion.py │ │ ├── awas.py │ │ ├── awas_correction.py │ │ ├── base_motion.py │ │ ├── cir_sinu_motion.py │ │ ├── file_gen.py │ │ ├── focused_piston_wave_gen.py │ │ ├── irregular_flap_wave_gen.py │ │ ├── irregular_piston_wave_gen.py │ │ ├── movement.py │ │ ├── path_file_gen.py │ │ ├── rect_motion.py │ │ ├── rect_sinu_motion.py │ │ ├── regular_flap_wave_gen.py │ │ ├── regular_piston_wave_gen.py │ │ ├── rot_motion.py │ │ ├── rot_sinu_motion.py │ │ ├── rotate_adv_file_gen.py │ │ ├── rotation_file_gen.py │ │ ├── solitary_piston_wave_gen.py │ │ ├── special_movement.py │ │ ├── wait_motion.py │ │ └── wave_gen.py │ ├── outparts_filter │ │ └── filters.py │ ├── properties │ │ ├── bound_normals_property.py │ │ ├── faces_property.py │ │ ├── flexstruct.py │ │ ├── float_property.py │ │ ├── initials_property.py │ │ ├── material_property.py │ │ ├── mk_based_properties.py │ │ ├── ml_piston │ │ │ ├── ml_piston.py │ │ │ ├── ml_piston_1d.py │ │ │ ├── ml_piston_2d.py │ │ │ └── ml_piston_2d_veldata.py │ │ ├── property.py │ │ └── simulation_object.py │ ├── relaxation_zone │ │ ├── relaxation_zone.py │ │ ├── relaxation_zone_file.py │ │ ├── relaxation_zone_irregular.py │ │ ├── relaxation_zone_regular.py │ │ └── relaxation_zone_uniform.py │ └── variable_res │ │ ├── bufferbox.py │ │ └── variable_res_config.py ├── enums.py ├── functions.py ├── lang │ ├── afrikaans.json │ ├── chinese-simplified.json │ ├── chinese-traditional.json │ ├── croatian.json │ ├── czech.json │ ├── dutch.json │ ├── english.json │ ├── finnish.json │ ├── french.json │ ├── german.json │ ├── hungarian.json │ ├── italian.json │ ├── japanese.json │ ├── korean.json │ ├── norwegian.json │ ├── polish.json │ ├── portuguese-brazilian.json │ ├── portuguese.json │ ├── romanian.json │ ├── russian.json │ ├── slovak.json │ ├── slovenian.json │ ├── spanish.json │ ├── swedish.json │ ├── turkish.json │ └── ukrainian.json ├── main.py ├── templates │ ├── case_summary_template.html │ ├── feature_support_report.html │ ├── flowtool │ │ ├── base.xml │ │ └── each.xml │ ├── gencase │ │ ├── accinput │ │ │ ├── base.xml │ │ │ └── each.xml │ │ ├── base.xml │ │ ├── chrono │ │ │ ├── base.xml │ │ │ ├── collisiondp_active.xml │ │ │ ├── collisiondp_inactive.xml │ │ │ ├── links │ │ │ │ ├── coulombdamping │ │ │ │ │ └── base.xml │ │ │ │ ├── hinge │ │ │ │ │ └── base.xml │ │ │ │ ├── linearspring │ │ │ │ │ └── base.xml │ │ │ │ ├── pointline │ │ │ │ │ └── base.xml │ │ │ │ ├── pulley │ │ │ │ │ └── base.xml │ │ │ │ └── spheric │ │ │ │ │ ├── base.xml │ │ │ │ │ └── idbody2.xml │ │ │ ├── objects │ │ │ │ ├── base.xml │ │ │ │ └── modelnormal_template.xml │ │ │ ├── savedata.xml │ │ │ └── schemescale.xml │ │ ├── damping │ │ │ ├── base.xml │ │ │ ├── box_each.xml │ │ │ ├── cylinder_each.xml │ │ │ └── zone_each.xml │ │ ├── definition.xml │ │ ├── flexstruct │ │ │ ├── base.xml │ │ │ └── each.xml │ │ ├── floatings │ │ │ ├── base.xml │ │ │ └── each │ │ │ │ ├── angularvelini.xml │ │ │ │ ├── base.xml │ │ │ │ ├── center.xml │ │ │ │ ├── inertia.xml │ │ │ │ ├── linearvelini.xml │ │ │ │ ├── massbody_prop.xml │ │ │ │ ├── material.xml │ │ │ │ ├── rhopbody_attr.xml │ │ │ │ ├── rotation.xml │ │ │ │ └── translation.xml │ │ ├── gauges │ │ │ ├── base.xml │ │ │ ├── common.xml │ │ │ ├── flow.xml │ │ │ ├── force.xml │ │ │ ├── maxz.xml │ │ │ ├── mesh.xml │ │ │ ├── swl.xml │ │ │ └── velocity.xml │ │ ├── initials │ │ │ ├── base.xml │ │ │ ├── linear.xml │ │ │ ├── parabolic.xml │ │ │ └── uniform.xml │ │ ├── inout │ │ │ ├── base.xml │ │ │ ├── each_zone.xml │ │ │ ├── imposevelocity │ │ │ │ ├── file_interpolated.xml │ │ │ │ ├── file_linear.xml │ │ │ │ ├── file_meshdata.xml │ │ │ │ ├── file_parabolic.xml │ │ │ │ ├── file_uniform.xml │ │ │ │ ├── fixed_constant.xml │ │ │ │ ├── fixed_jetcircle.xml │ │ │ │ ├── fixed_linear.xml │ │ │ │ ├── fixed_parabolic.xml │ │ │ │ ├── variable_linear.xml │ │ │ │ ├── variable_linear_each.xml │ │ │ │ ├── variable_parabolic.xml │ │ │ │ ├── variable_parabolic_each.xml │ │ │ │ ├── variable_uniform.xml │ │ │ │ └── variable_uniform_each.xml │ │ │ ├── useboxlimit │ │ │ │ ├── withfreecentre.xml │ │ │ │ └── withoutfreecentre.xml │ │ │ ├── zoneinfo │ │ │ │ ├── generator_2d_rotation.xml │ │ │ │ ├── generator_3d_rotation.xml │ │ │ │ ├── generator_box.xml │ │ │ │ ├── generator_circle.xml │ │ │ │ ├── generator_line.xml │ │ │ │ ├── generator_line_rotation.xml │ │ │ │ ├── generator_mk.xml │ │ │ │ ├── rotateadv.xml │ │ │ │ ├── zone2d.xml │ │ │ │ └── zone3d.xml │ │ │ └── zsurf │ │ │ │ ├── base.xml │ │ │ │ ├── zsurf_automatic.xml │ │ │ │ ├── zsurf_file.xml │ │ │ │ ├── zsurf_fixed.xml │ │ │ │ ├── zsurf_meshdata.xml │ │ │ │ ├── zsurf_timelist.xml │ │ │ │ └── zsurf_timelist_timevalue_each.xml │ │ ├── materials │ │ │ ├── base.xml │ │ │ └── property.xml │ │ ├── mdbc │ │ │ ├── boundnormal_cylinder.xml │ │ │ ├── boundnormal_parts.xml │ │ │ ├── boundnormal_plane.xml │ │ │ ├── boundnormal_plane_point.xml │ │ │ ├── boundnormal_plane_point_auto.xml │ │ │ ├── boundnormal_set.xml │ │ │ ├── boundnormal_sphere.xml │ │ │ ├── geometry_for_normals_base.xml │ │ │ ├── mdbc_runlist.xml │ │ │ ├── normals_base.xml │ │ │ └── normals_geometry.xml │ │ ├── mlpistons │ │ │ ├── base.xml │ │ │ ├── each_1d.xml │ │ │ ├── each_2d.xml │ │ │ └── each_veldata.xml │ │ ├── moorings │ │ │ ├── base.xml │ │ │ ├── moordynplus │ │ │ │ ├── body │ │ │ │ │ ├── compact.xml │ │ │ │ │ └── extended.xml │ │ │ │ ├── line │ │ │ │ │ ├── ba.xml │ │ │ │ │ ├── base.xml │ │ │ │ │ ├── diameter.xml │ │ │ │ │ ├── ea.xml │ │ │ │ │ ├── fix_connection.xml │ │ │ │ │ ├── massdeninair.xml │ │ │ │ │ └── vessel_connection.xml │ │ │ │ ├── moordynplus_embedded.xml │ │ │ │ └── moordynplus_file.xml │ │ │ └── moored_floatings.xml │ │ ├── motion │ │ │ ├── base.xml │ │ │ └── each │ │ │ │ ├── base.xml │ │ │ │ ├── movements_list.xml │ │ │ │ ├── next_attr.txt │ │ │ │ ├── normal │ │ │ │ ├── acc_rectilinear.xml │ │ │ │ ├── acc_rotational.xml │ │ │ │ ├── circular.xml │ │ │ │ ├── rectilinear.xml │ │ │ │ ├── rotational.xml │ │ │ │ ├── sinu_circular.xml │ │ │ │ ├── sinu_rectilinear.xml │ │ │ │ ├── sinu_rotational.xml │ │ │ │ └── wait.xml │ │ │ │ ├── null.xml │ │ │ │ └── special │ │ │ │ ├── file_gen.xml │ │ │ │ ├── file_path_gen.xml │ │ │ │ ├── file_rotate_adv_gen.xml │ │ │ │ └── file_rotational_gen.xml │ │ ├── objects │ │ │ ├── base.xml │ │ │ └── each │ │ │ │ ├── complex.xml │ │ │ │ ├── cube.xml │ │ │ │ ├── cylinder.xml │ │ │ │ ├── fillbox.xml │ │ │ │ ├── frdrawmode_disable.xml │ │ │ │ ├── frdrawmode_enable.xml │ │ │ │ ├── matrixreset.xml │ │ │ │ ├── mkbound.xml │ │ │ │ ├── mkfluid.xml │ │ │ │ ├── move.xml │ │ │ │ ├── rotation.xml │ │ │ │ ├── setnormalinvert.xml │ │ │ │ └── sphere.xml │ │ ├── outfilters │ │ │ ├── base.xml │ │ │ ├── filtercylinder.xml │ │ │ ├── filtergroup.xml │ │ │ ├── filtermk.xml │ │ │ ├── filterplane.xml │ │ │ ├── filterpos.xml │ │ │ ├── filtersphere.xml │ │ │ ├── filtertype.xml │ │ │ └── ftfollow.xml │ │ ├── parameters.xml │ │ ├── periodicity │ │ │ ├── x_inc_y.xml │ │ │ ├── x_inc_z.xml │ │ │ ├── y_inc_x.xml │ │ │ ├── y_inc_z.xml │ │ │ ├── z_inc_x.xml │ │ │ └── z_inc_y.xml │ │ ├── properties │ │ │ ├── base.xml │ │ │ └── each_link.xml │ │ ├── rzones │ │ │ ├── base.xml │ │ │ ├── file.xml │ │ │ ├── irregular.xml │ │ │ ├── regular.xml │ │ │ ├── uniform.xml │ │ │ ├── uniform_velocity.xml │ │ │ ├── uniform_velocitytimes.xml │ │ │ └── uniform_velocitytimes_each.xml │ │ ├── simulationdomain.xml │ │ ├── vres │ │ │ ├── base.xml │ │ │ ├── each.xml │ │ │ ├── simulation_domain.xml │ │ │ ├── simulation_domain_pos.xml │ │ │ ├── tracking.xml │ │ │ └── transform.xml │ │ └── wavepaddles │ │ │ ├── awas.xml │ │ │ ├── awas_correction.xml │ │ │ ├── base.xml │ │ │ ├── flap │ │ │ ├── irregular.xml │ │ │ └── regular.xml │ │ │ └── piston │ │ │ ├── focused.xml │ │ │ ├── irregular.xml │ │ │ ├── regular.xml │ │ │ └── solitary.xml │ └── scripts │ │ ├── linux │ │ ├── common.sh │ │ ├── computeforces.sh │ │ ├── floatinginfo.sh │ │ ├── flowtool.sh │ │ ├── gencase.sh │ │ ├── isosurface.sh │ │ ├── measuretool.sh │ │ ├── partvtk.sh │ │ ├── simulate.sh │ │ └── simulate_vres.sh │ │ └── windows │ │ ├── common.bat │ │ ├── computeforces.bat │ │ ├── floatinginfo.bat │ │ ├── flowtool.bat │ │ ├── gencase.bat │ │ ├── isosurface.bat │ │ ├── measuretool.bat │ │ ├── partvtk.bat │ │ ├── simulate.bat │ │ └── simulate_vres.bat ├── tools │ ├── dialog_tools.py │ ├── executable_tools.py │ ├── file_tools.py │ ├── freecad_tools.py │ ├── gui_tools.py │ ├── main_loop_tools.py │ ├── numvalidator_tools.py │ ├── pickle_tool.py │ ├── post_processing_tools.py │ ├── script_tools.py │ ├── stdout_tools.py │ ├── template_tools.py │ └── translation_tools.py ├── widgets │ ├── __init__.py │ ├── custom_widgets │ │ ├── __init__.py │ │ ├── acceleration_input.py │ │ ├── base_units_input.py │ │ ├── density_input.py │ │ ├── error_report_dialog.py │ │ ├── focusable_combo_box.py │ │ ├── information_dialog.py │ │ ├── int_value_input.py │ │ ├── mk_select_input_with_names.py │ │ ├── pressure_input.py │ │ ├── size_input.py │ │ ├── time_input.py │ │ ├── unit_spin_box.py │ │ ├── value_input.py │ │ └── velocity_input.py │ ├── designsphysics_dock.py │ ├── dock │ │ ├── __init__.py │ │ ├── dock_configuration_widget.py │ │ ├── dock_dp_widget.py │ │ ├── dock_logo_widget.py │ │ ├── dock_object_list_table_widget.py │ │ ├── dock_post_processing_widget.py │ │ ├── dock_pre_processing_widget.py │ │ ├── dock_simulation_widget.py │ │ ├── dock_widgets │ │ │ ├── __init__.py │ │ │ ├── add_bathymetry_dialog.py │ │ │ ├── add_geo_dialog.py │ │ │ ├── case_summary.py │ │ │ ├── constants_dialog.py │ │ │ ├── execution_parameters_dialog.py │ │ │ ├── feature_support_dialog.py │ │ │ ├── gencase_completed_dialog.py │ │ │ ├── mode_2d_config_dialog.py │ │ │ ├── object_order_widget.py │ │ │ ├── run_additional_parameters_dialog.py │ │ │ ├── run_dialog.py │ │ │ ├── setup_plugin_dialog.py │ │ │ ├── simulation_domain_widget.py │ │ │ └── surface_stl_dialog.py │ │ ├── postprocessing │ │ │ ├── __init__.py │ │ │ ├── computeforces_dialog.py │ │ │ ├── export_progress_dialog.py │ │ │ ├── floatinginfo_dialog.py │ │ │ ├── flowtool_dialog.py │ │ │ ├── flowtool_xml_box_dialog.py │ │ │ ├── isosurface_dialog.py │ │ │ ├── measuretool_dialog.py │ │ │ ├── measuretool_grid_dialog.py │ │ │ ├── measuretool_points_dialog.py │ │ │ ├── mk_helper_widget.py │ │ │ └── partvtk_dialog.py │ │ └── special_widgets │ │ │ ├── __init__.py │ │ │ ├── acceleration_input_dialog.py │ │ │ ├── chrono │ │ │ ├── __init__.py │ │ │ ├── chrono_config_dialog.py │ │ │ ├── chrono_object_check_options.py │ │ │ ├── link_coulombdamping_edit.py │ │ │ ├── link_hinge_edit.py │ │ │ ├── link_linear_spring_edit.py │ │ │ ├── link_point_line_edit.py │ │ │ ├── link_pulley_edit.py │ │ │ └── link_spheric_edit.py │ │ │ ├── damping │ │ │ ├── __init__.py │ │ │ ├── damping_box_config_dialog.py │ │ │ ├── damping_config_dialog.py │ │ │ ├── damping_cylinder_dialog.py │ │ │ └── damping_zone_config_dialog.py │ │ │ ├── flex_struct_dialog.py │ │ │ ├── gauges │ │ │ ├── __init__.py │ │ │ ├── base_gauge_dialog.py │ │ │ ├── defaults_gauge_dialog.py │ │ │ ├── flow_gauge_dialog.py │ │ │ ├── force_gauge_dialog.py │ │ │ ├── gauges_list_dialog.py │ │ │ ├── max_z_gauge_dialog.py │ │ │ ├── mesh_gauge_dialog.py │ │ │ ├── swl_gauge_dialog.py │ │ │ └── velocity_gauge_dialog.py │ │ │ ├── inout │ │ │ ├── __init__.py │ │ │ ├── inlet_config_dialog.py │ │ │ ├── inlet_zone_edit.py │ │ │ ├── velocity_widgets.py │ │ │ ├── zone_generator_widgets │ │ │ │ ├── __init__.py │ │ │ │ ├── box_zone_generator_widget.py │ │ │ │ ├── circle_zone_generator_widget.py │ │ │ │ ├── line_zone_generator_widget.py │ │ │ │ ├── mk_zone_generator_widget.py │ │ │ │ ├── zone_2d_direction_widget.py │ │ │ │ ├── zone_2d_rotation_widget.py │ │ │ │ ├── zone_3d_direction_widget.py │ │ │ │ └── zone_3d_rotation_widget.py │ │ │ └── zsurf_widgets.py │ │ │ ├── ml_piston_1d_config_dialog.py │ │ │ ├── ml_piston_2d_config_dialog.py │ │ │ ├── moorings │ │ │ ├── __init__.py │ │ │ ├── moordynplus_body_configuration_dialog.py │ │ │ ├── moordynplus_line_configuration_dialog.py │ │ │ ├── moordynplus_parameters_dialog.py │ │ │ └── moorings_configuration_dialog.py │ │ │ ├── outfilters │ │ │ ├── __init__.py │ │ │ ├── base_dialog.py │ │ │ ├── cylinder_filter_dialog.py │ │ │ ├── group_filter_dialog.py │ │ │ ├── mk_filter_dialog.py │ │ │ ├── outparts_dialog.py │ │ │ ├── plane_filter_dialog.py │ │ │ ├── pos_filter_dialog.py │ │ │ ├── sphere_filter_dialog.py │ │ │ └── type_filter_dialog.py │ │ │ ├── relaxation_zone │ │ │ ├── __init__.py │ │ │ ├── relaxation_zone_file_config_dialog.py │ │ │ ├── relaxation_zone_irregular_config_dialog.py │ │ │ ├── relaxation_zone_regular_config_dialog.py │ │ │ ├── relaxation_zone_uniform_config_dialog.py │ │ │ └── velocity_times_dialog.py │ │ │ ├── special_options_selector_dialog.py │ │ │ └── variable_res │ │ │ ├── __init__.py │ │ │ ├── bufferbox_edit_dialog.py │ │ │ └── variable_res_config_dialog.py │ ├── properties_dock_widget.py │ └── properties_widgets │ │ ├── __init__.py │ │ ├── bound_normals_dialog.py │ │ ├── faces_dialog.py │ │ ├── float_state_dialog.py │ │ ├── initials_dialog.py │ │ ├── material_dialog.py │ │ ├── mdbc_dialog.py │ │ ├── motion │ │ ├── __init__.py │ │ ├── acc_circular_motion_timeline.py │ │ ├── acc_rectilinear_motion_timeline.py │ │ ├── acc_rotational_motion_timeline.py │ │ ├── adv_rotation_file_motion_timeline.py │ │ ├── cir_sinu_motion_timeline.py │ │ ├── file_motion_timeline.py │ │ ├── focused_piston_wave_motion_timeline.py │ │ ├── irregular_flap_wave_motion_timeline.py │ │ ├── irregular_piston_wave_motion_timeline.py │ │ ├── motion_timeline.py │ │ ├── movement_actions.py │ │ ├── movement_dialog.py │ │ ├── movement_timeline_placeholder.py │ │ ├── path_file_motion_timeline.py │ │ ├── rect_sinu_motion_timeline.py │ │ ├── rectilinear_motion_timeline.py │ │ ├── regular_flap_wave_motion_timeline.py │ │ ├── regular_piston_wave_motion_timeline.py │ │ ├── rot_sinu_motion_timeline.py │ │ ├── rotation_file_motion_timeline.py │ │ ├── rotational_motion_timeline.py │ │ ├── solitary_piston_wave_motion_timeline.py │ │ ├── wait_motion_timeline.py │ │ └── wave_movement_actions.py │ │ └── sim_object_dialog.py └── xml │ ├── __init__.py │ ├── importer.py │ ├── renderers │ ├── __init__.py │ ├── accinput_renderer.py │ ├── chrono_renderer.py │ ├── damping_renderer.py │ ├── definition_renderer.py │ ├── flexstruct_renderer.py │ ├── floatings_renderer.py │ ├── gauges_renderer.py │ ├── initials_renderer.py │ ├── inout_renderer.py │ ├── mdbc_renderer.py │ ├── mlpistons_renderer.py │ ├── moorings_renderer.py │ ├── motion_renderer.py │ ├── objects_renderer.py │ ├── outfilters_renderer.py │ ├── parameters_renderer.py │ ├── periodicity_renderer.py │ ├── properties_renderer.py │ ├── rzones_renderer.py │ ├── simulationdomain_renderer.py │ ├── vres_renderer.py │ └── wavepaddles_renderer.py │ ├── xml_exporter.py │ └── xmltodict.py ├── package.xml └── setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DesignSPHysics.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/DesignSPHysics.FCMacro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/README.md -------------------------------------------------------------------------------- /default-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/default-config.json -------------------------------------------------------------------------------- /default-materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/default-materials.json -------------------------------------------------------------------------------- /images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/clock.png -------------------------------------------------------------------------------- /images/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/down_arrow.png -------------------------------------------------------------------------------- /images/file_mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/file_mov.png -------------------------------------------------------------------------------- /images/flowtool_template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/flowtool_template.jpg -------------------------------------------------------------------------------- /images/focused_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/focused_wave.png -------------------------------------------------------------------------------- /images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/icon.svg -------------------------------------------------------------------------------- /images/irregular_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/irregular_wave.png -------------------------------------------------------------------------------- /images/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/left-arrow.png -------------------------------------------------------------------------------- /images/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/load.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/movement.png -------------------------------------------------------------------------------- /images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/new.png -------------------------------------------------------------------------------- /images/regular_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/regular_wave.png -------------------------------------------------------------------------------- /images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/run.png -------------------------------------------------------------------------------- /images/run_gencase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/run_gencase.png -------------------------------------------------------------------------------- /images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/save.png -------------------------------------------------------------------------------- /images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/trash.png -------------------------------------------------------------------------------- /images/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/images/up_arrow.png -------------------------------------------------------------------------------- /mod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/appmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/appmode.py -------------------------------------------------------------------------------- /mod/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/constants.py -------------------------------------------------------------------------------- /mod/dataobjects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/dataobjects/acceleration_input/acceleration_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/acceleration_input/acceleration_input.py -------------------------------------------------------------------------------- /mod/dataobjects/acceleration_input/acceleration_input_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/acceleration_input/acceleration_input_data.py -------------------------------------------------------------------------------- /mod/dataobjects/bathymetry_form_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/bathymetry_form_data.py -------------------------------------------------------------------------------- /mod/dataobjects/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/case.py -------------------------------------------------------------------------------- /mod/dataobjects/case_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/case_information.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_collision_dp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_collision_dp.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_config.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_csv_intervals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_csv_intervals.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_link_coulomb_damping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_link_coulomb_damping.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_link_hinge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_link_hinge.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_link_linear_spring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_link_linear_spring.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_link_point_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_link_point_line.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_link_pulley.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_link_pulley.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_link_spheric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_link_spheric.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_object.py -------------------------------------------------------------------------------- /mod/dataobjects/chrono/chrono_scale_scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/chrono/chrono_scale_scheme.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/application_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/application_settings.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/constants.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/domain_fixed_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/domain_fixed_parameter.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/executable_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/executable_paths.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/execution_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/execution_parameters.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/periodicity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/periodicity.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/periodicity_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/periodicity_info.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/post_processing_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/post_processing_settings.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/sd_position_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/sd_position_property.py -------------------------------------------------------------------------------- /mod/dataobjects/configuration/simulation_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/configuration/simulation_domain.py -------------------------------------------------------------------------------- /mod/dataobjects/damping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/damping.py -------------------------------------------------------------------------------- /mod/dataobjects/flow_tool_xml_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/flow_tool_xml_box.py -------------------------------------------------------------------------------- /mod/dataobjects/gauges/flow_gauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/gauges/flow_gauge.py -------------------------------------------------------------------------------- /mod/dataobjects/gauges/force_gauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/gauges/force_gauge.py -------------------------------------------------------------------------------- /mod/dataobjects/gauges/gauge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/gauges/gauge_base.py -------------------------------------------------------------------------------- /mod/dataobjects/gauges/gauges_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/gauges/gauges_data.py -------------------------------------------------------------------------------- /mod/dataobjects/gauges/max_z_gauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/gauges/max_z_gauge.py -------------------------------------------------------------------------------- /mod/dataobjects/gauges/mesh_gauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/gauges/mesh_gauge.py -------------------------------------------------------------------------------- /mod/dataobjects/gauges/swl_gauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/gauges/swl_gauge.py -------------------------------------------------------------------------------- /mod/dataobjects/gauges/velocity_gauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/gauges/velocity_gauge.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_config.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_density_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_density_info.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_elevation_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_elevation_info.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_velocity_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_velocity_info.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_zone.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_zone_box_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_zone_box_generator.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_zone_circle_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_zone_circle_generator.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_zone_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_zone_direction.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_zone_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_zone_info.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_zone_line_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_zone_line_generator.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_zone_mk_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_zone_mk_generator.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/inlet_outlet_zone_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/inlet_outlet_zone_rotation.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/velocities/jet_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/velocities/jet_circle.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/velocities/linear_velocity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/velocities/linear_velocity.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/velocities/parabolic_velocity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/velocities/parabolic_velocity.py -------------------------------------------------------------------------------- /mod/dataobjects/inletoutlet/velocities/velocity_mesh_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/inletoutlet/velocities/velocity_mesh_data.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_body.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_configuration.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_connect.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_connect_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_connect_connection.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_fix_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_fix_connection.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_line.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_line_default_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_line_default_configuration.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_output_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_output_configuration.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_solver_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_solver_options.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moordynplus/moordynplus_vessel_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moordynplus/moordynplus_vessel_connection.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moorings_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moorings_configuration.py -------------------------------------------------------------------------------- /mod/dataobjects/moorings/moorings_save_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/moorings/moorings_save_options.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/dataobjects/motion/acc_cir_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/acc_cir_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/acc_rect_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/acc_rect_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/acc_rot_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/acc_rot_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/awas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/awas.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/awas_correction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/awas_correction.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/base_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/base_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/cir_sinu_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/cir_sinu_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/file_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/file_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/focused_piston_wave_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/focused_piston_wave_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/irregular_flap_wave_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/irregular_flap_wave_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/irregular_piston_wave_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/irregular_piston_wave_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/movement.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/path_file_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/path_file_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/rect_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/rect_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/rect_sinu_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/rect_sinu_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/regular_flap_wave_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/regular_flap_wave_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/regular_piston_wave_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/regular_piston_wave_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/rot_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/rot_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/rot_sinu_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/rot_sinu_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/rotate_adv_file_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/rotate_adv_file_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/rotation_file_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/rotation_file_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/solitary_piston_wave_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/solitary_piston_wave_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/special_movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/special_movement.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/wait_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/wait_motion.py -------------------------------------------------------------------------------- /mod/dataobjects/motion/wave_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/motion/wave_gen.py -------------------------------------------------------------------------------- /mod/dataobjects/outparts_filter/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/outparts_filter/filters.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/bound_normals_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/bound_normals_property.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/faces_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/faces_property.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/flexstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/flexstruct.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/float_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/float_property.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/initials_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/initials_property.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/material_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/material_property.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/mk_based_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/mk_based_properties.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/ml_piston/ml_piston.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/ml_piston/ml_piston.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/ml_piston/ml_piston_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/ml_piston/ml_piston_1d.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/ml_piston/ml_piston_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/ml_piston/ml_piston_2d.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/ml_piston/ml_piston_2d_veldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/ml_piston/ml_piston_2d_veldata.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/property.py -------------------------------------------------------------------------------- /mod/dataobjects/properties/simulation_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/properties/simulation_object.py -------------------------------------------------------------------------------- /mod/dataobjects/relaxation_zone/relaxation_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/relaxation_zone/relaxation_zone.py -------------------------------------------------------------------------------- /mod/dataobjects/relaxation_zone/relaxation_zone_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/relaxation_zone/relaxation_zone_file.py -------------------------------------------------------------------------------- /mod/dataobjects/relaxation_zone/relaxation_zone_irregular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/relaxation_zone/relaxation_zone_irregular.py -------------------------------------------------------------------------------- /mod/dataobjects/relaxation_zone/relaxation_zone_regular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/relaxation_zone/relaxation_zone_regular.py -------------------------------------------------------------------------------- /mod/dataobjects/relaxation_zone/relaxation_zone_uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/relaxation_zone/relaxation_zone_uniform.py -------------------------------------------------------------------------------- /mod/dataobjects/variable_res/bufferbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/variable_res/bufferbox.py -------------------------------------------------------------------------------- /mod/dataobjects/variable_res/variable_res_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/dataobjects/variable_res/variable_res_config.py -------------------------------------------------------------------------------- /mod/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/enums.py -------------------------------------------------------------------------------- /mod/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/functions.py -------------------------------------------------------------------------------- /mod/lang/afrikaans.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/chinese-simplified.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/chinese-traditional.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/croatian.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/czech.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/dutch.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/lang/english.json -------------------------------------------------------------------------------- /mod/lang/finnish.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/french.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/german.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/hungarian.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/italian.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/japanese.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/korean.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/norwegian.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/polish.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/portuguese-brazilian.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/portuguese.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/romanian.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/russian.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/slovak.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/slovenian.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/lang/spanish.json -------------------------------------------------------------------------------- /mod/lang/swedish.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/turkish.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/lang/ukrainian.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /mod/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/main.py -------------------------------------------------------------------------------- /mod/templates/case_summary_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/case_summary_template.html -------------------------------------------------------------------------------- /mod/templates/feature_support_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/feature_support_report.html -------------------------------------------------------------------------------- /mod/templates/flowtool/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/flowtool/base.xml -------------------------------------------------------------------------------- /mod/templates/flowtool/each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/flowtool/each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/accinput/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/accinput/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/accinput/each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/accinput/each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/collisiondp_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/collisiondp_active.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/collisiondp_inactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/collisiondp_inactive.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/links/coulombdamping/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/links/coulombdamping/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/links/hinge/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/links/hinge/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/links/linearspring/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/links/linearspring/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/links/pointline/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/links/pointline/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/links/pulley/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/links/pulley/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/links/spheric/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/links/spheric/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/links/spheric/idbody2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/links/spheric/idbody2.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/objects/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/objects/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/objects/modelnormal_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/objects/modelnormal_template.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/savedata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/savedata.xml -------------------------------------------------------------------------------- /mod/templates/gencase/chrono/schemescale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/chrono/schemescale.xml -------------------------------------------------------------------------------- /mod/templates/gencase/damping/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/damping/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/damping/box_each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/damping/box_each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/damping/cylinder_each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/damping/cylinder_each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/damping/zone_each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/damping/zone_each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/definition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/definition.xml -------------------------------------------------------------------------------- /mod/templates/gencase/flexstruct/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/flexstruct/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/flexstruct/each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/flexstruct/each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/floatings/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/angularvelini.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/floatings/each/angularvelini.xml -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/floatings/each/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/floatings/each/center.xml -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/inertia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/floatings/each/inertia.xml -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/linearvelini.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/floatings/each/linearvelini.xml -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/massbody_prop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/floatings/each/massbody_prop.xml -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/material.xml: -------------------------------------------------------------------------------- 1 | property="{material}" -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/rhopbody_attr.xml: -------------------------------------------------------------------------------- 1 | rhopbody="{floating_density_value}" -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/floatings/each/rotation.xml -------------------------------------------------------------------------------- /mod/templates/gencase/floatings/each/translation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/floatings/each/translation.xml -------------------------------------------------------------------------------- /mod/templates/gencase/gauges/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/gauges/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/gauges/common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/gauges/common.xml -------------------------------------------------------------------------------- /mod/templates/gencase/gauges/flow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/gauges/flow.xml -------------------------------------------------------------------------------- /mod/templates/gencase/gauges/force.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/gauges/force.xml -------------------------------------------------------------------------------- /mod/templates/gencase/gauges/maxz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/gauges/maxz.xml -------------------------------------------------------------------------------- /mod/templates/gencase/gauges/mesh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/gauges/mesh.xml -------------------------------------------------------------------------------- /mod/templates/gencase/gauges/swl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/gauges/swl.xml -------------------------------------------------------------------------------- /mod/templates/gencase/gauges/velocity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/gauges/velocity.xml -------------------------------------------------------------------------------- /mod/templates/gencase/initials/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/initials/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/initials/linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/initials/linear.xml -------------------------------------------------------------------------------- /mod/templates/gencase/initials/parabolic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/initials/parabolic.xml -------------------------------------------------------------------------------- /mod/templates/gencase/initials/uniform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/initials/uniform.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/each_zone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/each_zone.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/file_interpolated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/file_interpolated.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/file_linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/file_linear.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/file_meshdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/file_meshdata.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/file_parabolic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/file_parabolic.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/file_uniform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/file_uniform.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/fixed_constant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/fixed_constant.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/fixed_jetcircle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/fixed_jetcircle.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/fixed_linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/fixed_linear.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/fixed_parabolic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/fixed_parabolic.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/variable_linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/variable_linear.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/variable_linear_each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/variable_linear_each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/variable_parabolic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/variable_parabolic.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/variable_parabolic_each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/variable_parabolic_each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/variable_uniform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/variable_uniform.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/imposevelocity/variable_uniform_each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/imposevelocity/variable_uniform_each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/useboxlimit/withfreecentre.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/useboxlimit/withfreecentre.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/useboxlimit/withoutfreecentre.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/useboxlimit/withoutfreecentre.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/generator_2d_rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/generator_2d_rotation.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/generator_3d_rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/generator_3d_rotation.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/generator_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/generator_box.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/generator_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/generator_circle.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/generator_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/generator_line.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/generator_line_rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/generator_line_rotation.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/generator_mk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/generator_mk.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/rotateadv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/rotateadv.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/zone2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/zone2d.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zoneinfo/zone3d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zoneinfo/zone3d.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zsurf/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zsurf/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zsurf/zsurf_automatic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zsurf/zsurf_automatic.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zsurf/zsurf_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zsurf/zsurf_file.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zsurf/zsurf_fixed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zsurf/zsurf_fixed.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zsurf/zsurf_meshdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zsurf/zsurf_meshdata.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zsurf/zsurf_timelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zsurf/zsurf_timelist.xml -------------------------------------------------------------------------------- /mod/templates/gencase/inout/zsurf/zsurf_timelist_timevalue_each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/inout/zsurf/zsurf_timelist_timevalue_each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/materials/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/materials/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/materials/property.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/materials/property.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/boundnormal_cylinder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/boundnormal_cylinder.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/boundnormal_parts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/boundnormal_parts.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/boundnormal_plane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/boundnormal_plane.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/boundnormal_plane_point.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/boundnormal_plane_point.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/boundnormal_plane_point_auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/boundnormal_plane_point_auto.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/boundnormal_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/boundnormal_set.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/boundnormal_sphere.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/boundnormal_sphere.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/geometry_for_normals_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/geometry_for_normals_base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/mdbc_runlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/mdbc_runlist.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/normals_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/normals_base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mdbc/normals_geometry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mdbc/normals_geometry.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mlpistons/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mlpistons/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mlpistons/each_1d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mlpistons/each_1d.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mlpistons/each_2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mlpistons/each_2d.xml -------------------------------------------------------------------------------- /mod/templates/gencase/mlpistons/each_veldata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/mlpistons/each_veldata.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/body/compact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/body/compact.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/body/extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/body/extended.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/line/ba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/line/ba.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/line/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/line/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/line/diameter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/line/diameter.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/line/ea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/line/ea.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/line/fix_connection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/line/fix_connection.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/line/massdeninair.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/line/massdeninair.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/line/vessel_connection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/line/vessel_connection.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/moordynplus_embedded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/moordynplus_embedded.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moordynplus/moordynplus_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moordynplus/moordynplus_file.xml -------------------------------------------------------------------------------- /mod/templates/gencase/moorings/moored_floatings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/moorings/moored_floatings.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/movements_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/movements_list.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/next_attr.txt: -------------------------------------------------------------------------------- 1 | next="{next_index}" -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/normal/acc_rectilinear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/normal/acc_rectilinear.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/normal/acc_rotational.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/normal/acc_rotational.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/normal/circular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/normal/circular.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/normal/rectilinear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/normal/rectilinear.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/normal/rotational.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/normal/rotational.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/normal/sinu_circular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/normal/sinu_circular.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/normal/sinu_rectilinear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/normal/sinu_rectilinear.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/normal/sinu_rotational.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/normal/sinu_rotational.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/normal/wait.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/normal/wait.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/null.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/null.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/special/file_gen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/special/file_gen.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/special/file_path_gen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/special/file_path_gen.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/special/file_rotate_adv_gen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/special/file_rotate_adv_gen.xml -------------------------------------------------------------------------------- /mod/templates/gencase/motion/each/special/file_rotational_gen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/motion/each/special/file_rotational_gen.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/complex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/complex.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/cube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/cube.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/cylinder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/cylinder.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/fillbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/fillbox.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/frdrawmode_disable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/frdrawmode_disable.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/frdrawmode_enable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/frdrawmode_enable.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/matrixreset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/matrixreset.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/mkbound.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/mkbound.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/mkfluid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/mkfluid.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/move.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/move.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/rotation.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/setnormalinvert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/setnormalinvert.xml -------------------------------------------------------------------------------- /mod/templates/gencase/objects/each/sphere.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/objects/each/sphere.xml -------------------------------------------------------------------------------- /mod/templates/gencase/outfilters/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/outfilters/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/outfilters/filtercylinder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/outfilters/filtercylinder.xml -------------------------------------------------------------------------------- /mod/templates/gencase/outfilters/filtergroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/outfilters/filtergroup.xml -------------------------------------------------------------------------------- /mod/templates/gencase/outfilters/filtermk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/outfilters/filtermk.xml -------------------------------------------------------------------------------- /mod/templates/gencase/outfilters/filterplane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/outfilters/filterplane.xml -------------------------------------------------------------------------------- /mod/templates/gencase/outfilters/filterpos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/outfilters/filterpos.xml -------------------------------------------------------------------------------- /mod/templates/gencase/outfilters/filtersphere.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/outfilters/filtersphere.xml -------------------------------------------------------------------------------- /mod/templates/gencase/outfilters/filtertype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/outfilters/filtertype.xml -------------------------------------------------------------------------------- /mod/templates/gencase/outfilters/ftfollow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/outfilters/ftfollow.xml -------------------------------------------------------------------------------- /mod/templates/gencase/parameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/parameters.xml -------------------------------------------------------------------------------- /mod/templates/gencase/periodicity/x_inc_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/periodicity/x_inc_y.xml -------------------------------------------------------------------------------- /mod/templates/gencase/periodicity/x_inc_z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/periodicity/x_inc_z.xml -------------------------------------------------------------------------------- /mod/templates/gencase/periodicity/y_inc_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/periodicity/y_inc_x.xml -------------------------------------------------------------------------------- /mod/templates/gencase/periodicity/y_inc_z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/periodicity/y_inc_z.xml -------------------------------------------------------------------------------- /mod/templates/gencase/periodicity/z_inc_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/periodicity/z_inc_x.xml -------------------------------------------------------------------------------- /mod/templates/gencase/periodicity/z_inc_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/periodicity/z_inc_y.xml -------------------------------------------------------------------------------- /mod/templates/gencase/properties/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/properties/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/properties/each_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/properties/each_link.xml -------------------------------------------------------------------------------- /mod/templates/gencase/rzones/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/rzones/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/rzones/file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/rzones/file.xml -------------------------------------------------------------------------------- /mod/templates/gencase/rzones/irregular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/rzones/irregular.xml -------------------------------------------------------------------------------- /mod/templates/gencase/rzones/regular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/rzones/regular.xml -------------------------------------------------------------------------------- /mod/templates/gencase/rzones/uniform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/rzones/uniform.xml -------------------------------------------------------------------------------- /mod/templates/gencase/rzones/uniform_velocity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/rzones/uniform_velocity.xml -------------------------------------------------------------------------------- /mod/templates/gencase/rzones/uniform_velocitytimes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/rzones/uniform_velocitytimes.xml -------------------------------------------------------------------------------- /mod/templates/gencase/rzones/uniform_velocitytimes_each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/rzones/uniform_velocitytimes_each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/simulationdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/simulationdomain.xml -------------------------------------------------------------------------------- /mod/templates/gencase/vres/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/vres/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/vres/each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/vres/each.xml -------------------------------------------------------------------------------- /mod/templates/gencase/vres/simulation_domain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/vres/simulation_domain.xml -------------------------------------------------------------------------------- /mod/templates/gencase/vres/simulation_domain_pos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/vres/simulation_domain_pos.xml -------------------------------------------------------------------------------- /mod/templates/gencase/vres/tracking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/vres/tracking.xml -------------------------------------------------------------------------------- /mod/templates/gencase/vres/transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/vres/transform.xml -------------------------------------------------------------------------------- /mod/templates/gencase/wavepaddles/awas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/wavepaddles/awas.xml -------------------------------------------------------------------------------- /mod/templates/gencase/wavepaddles/awas_correction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/wavepaddles/awas_correction.xml -------------------------------------------------------------------------------- /mod/templates/gencase/wavepaddles/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/wavepaddles/base.xml -------------------------------------------------------------------------------- /mod/templates/gencase/wavepaddles/flap/irregular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/wavepaddles/flap/irregular.xml -------------------------------------------------------------------------------- /mod/templates/gencase/wavepaddles/flap/regular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/wavepaddles/flap/regular.xml -------------------------------------------------------------------------------- /mod/templates/gencase/wavepaddles/piston/focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/wavepaddles/piston/focused.xml -------------------------------------------------------------------------------- /mod/templates/gencase/wavepaddles/piston/irregular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/wavepaddles/piston/irregular.xml -------------------------------------------------------------------------------- /mod/templates/gencase/wavepaddles/piston/regular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/wavepaddles/piston/regular.xml -------------------------------------------------------------------------------- /mod/templates/gencase/wavepaddles/piston/solitary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/gencase/wavepaddles/piston/solitary.xml -------------------------------------------------------------------------------- /mod/templates/scripts/linux/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/common.sh -------------------------------------------------------------------------------- /mod/templates/scripts/linux/computeforces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/computeforces.sh -------------------------------------------------------------------------------- /mod/templates/scripts/linux/floatinginfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/floatinginfo.sh -------------------------------------------------------------------------------- /mod/templates/scripts/linux/flowtool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/flowtool.sh -------------------------------------------------------------------------------- /mod/templates/scripts/linux/gencase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/gencase.sh -------------------------------------------------------------------------------- /mod/templates/scripts/linux/isosurface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/isosurface.sh -------------------------------------------------------------------------------- /mod/templates/scripts/linux/measuretool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/measuretool.sh -------------------------------------------------------------------------------- /mod/templates/scripts/linux/partvtk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/partvtk.sh -------------------------------------------------------------------------------- /mod/templates/scripts/linux/simulate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/simulate.sh -------------------------------------------------------------------------------- /mod/templates/scripts/linux/simulate_vres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/linux/simulate_vres.sh -------------------------------------------------------------------------------- /mod/templates/scripts/windows/common.bat: -------------------------------------------------------------------------------- 1 | {custom_text} 2 | set bindir={dir} 3 | -------------------------------------------------------------------------------- /mod/templates/scripts/windows/computeforces.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/windows/computeforces.bat -------------------------------------------------------------------------------- /mod/templates/scripts/windows/floatinginfo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/windows/floatinginfo.bat -------------------------------------------------------------------------------- /mod/templates/scripts/windows/flowtool.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/windows/flowtool.bat -------------------------------------------------------------------------------- /mod/templates/scripts/windows/gencase.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/windows/gencase.bat -------------------------------------------------------------------------------- /mod/templates/scripts/windows/isosurface.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/windows/isosurface.bat -------------------------------------------------------------------------------- /mod/templates/scripts/windows/measuretool.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/windows/measuretool.bat -------------------------------------------------------------------------------- /mod/templates/scripts/windows/partvtk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/windows/partvtk.bat -------------------------------------------------------------------------------- /mod/templates/scripts/windows/simulate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/windows/simulate.bat -------------------------------------------------------------------------------- /mod/templates/scripts/windows/simulate_vres.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/templates/scripts/windows/simulate_vres.bat -------------------------------------------------------------------------------- /mod/tools/dialog_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/dialog_tools.py -------------------------------------------------------------------------------- /mod/tools/executable_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/executable_tools.py -------------------------------------------------------------------------------- /mod/tools/file_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/file_tools.py -------------------------------------------------------------------------------- /mod/tools/freecad_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/freecad_tools.py -------------------------------------------------------------------------------- /mod/tools/gui_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/gui_tools.py -------------------------------------------------------------------------------- /mod/tools/main_loop_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/main_loop_tools.py -------------------------------------------------------------------------------- /mod/tools/numvalidator_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/numvalidator_tools.py -------------------------------------------------------------------------------- /mod/tools/pickle_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/pickle_tool.py -------------------------------------------------------------------------------- /mod/tools/post_processing_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/post_processing_tools.py -------------------------------------------------------------------------------- /mod/tools/script_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/script_tools.py -------------------------------------------------------------------------------- /mod/tools/stdout_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/stdout_tools.py -------------------------------------------------------------------------------- /mod/tools/template_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/template_tools.py -------------------------------------------------------------------------------- /mod/tools/translation_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/tools/translation_tools.py -------------------------------------------------------------------------------- /mod/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/acceleration_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/acceleration_input.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/base_units_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/base_units_input.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/density_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/density_input.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/error_report_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/error_report_dialog.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/focusable_combo_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/focusable_combo_box.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/information_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/information_dialog.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/int_value_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/int_value_input.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/mk_select_input_with_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/mk_select_input_with_names.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/pressure_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/pressure_input.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/size_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/size_input.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/time_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/time_input.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/unit_spin_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/unit_spin_box.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/value_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/value_input.py -------------------------------------------------------------------------------- /mod/widgets/custom_widgets/velocity_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/custom_widgets/velocity_input.py -------------------------------------------------------------------------------- /mod/widgets/designsphysics_dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/designsphysics_dock.py -------------------------------------------------------------------------------- /mod/widgets/dock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/dock_configuration_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_configuration_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_dp_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_dp_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_logo_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_logo_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_object_list_table_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_object_list_table_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_post_processing_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_post_processing_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_pre_processing_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_pre_processing_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_simulation_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_simulation_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/add_bathymetry_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/add_bathymetry_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/add_geo_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/add_geo_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/case_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/case_summary.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/constants_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/constants_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/execution_parameters_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/execution_parameters_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/feature_support_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/feature_support_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/gencase_completed_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/gencase_completed_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/mode_2d_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/mode_2d_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/object_order_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/object_order_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/run_additional_parameters_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/run_additional_parameters_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/run_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/run_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/setup_plugin_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/setup_plugin_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/simulation_domain_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/simulation_domain_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/dock_widgets/surface_stl_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/dock_widgets/surface_stl_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/computeforces_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/computeforces_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/export_progress_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/export_progress_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/floatinginfo_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/floatinginfo_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/flowtool_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/flowtool_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/flowtool_xml_box_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/flowtool_xml_box_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/isosurface_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/isosurface_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/measuretool_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/measuretool_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/measuretool_grid_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/measuretool_grid_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/measuretool_points_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/measuretool_points_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/mk_helper_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/mk_helper_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/postprocessing/partvtk_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/postprocessing/partvtk_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/acceleration_input_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/acceleration_input_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/chrono/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/chrono/chrono_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/chrono/chrono_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/chrono/chrono_object_check_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/chrono/chrono_object_check_options.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/chrono/link_coulombdamping_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/chrono/link_coulombdamping_edit.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/chrono/link_hinge_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/chrono/link_hinge_edit.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/chrono/link_linear_spring_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/chrono/link_linear_spring_edit.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/chrono/link_point_line_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/chrono/link_point_line_edit.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/chrono/link_pulley_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/chrono/link_pulley_edit.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/chrono/link_spheric_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/chrono/link_spheric_edit.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/damping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/damping/damping_box_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/damping/damping_box_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/damping/damping_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/damping/damping_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/damping/damping_cylinder_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/damping/damping_cylinder_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/damping/damping_zone_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/damping/damping_zone_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/flex_struct_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/flex_struct_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/base_gauge_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/gauges/base_gauge_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/defaults_gauge_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/gauges/defaults_gauge_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/flow_gauge_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/gauges/flow_gauge_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/force_gauge_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/gauges/force_gauge_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/gauges_list_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/gauges/gauges_list_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/max_z_gauge_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/gauges/max_z_gauge_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/mesh_gauge_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/gauges/mesh_gauge_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/swl_gauge_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/gauges/swl_gauge_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/gauges/velocity_gauge_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/gauges/velocity_gauge_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/inlet_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/inlet_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/inlet_zone_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/inlet_zone_edit.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/velocity_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/velocity_widgets.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zone_generator_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zone_generator_widgets/box_zone_generator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/zone_generator_widgets/box_zone_generator_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zone_generator_widgets/circle_zone_generator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/zone_generator_widgets/circle_zone_generator_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zone_generator_widgets/line_zone_generator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/zone_generator_widgets/line_zone_generator_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zone_generator_widgets/mk_zone_generator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/zone_generator_widgets/mk_zone_generator_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zone_generator_widgets/zone_2d_direction_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/zone_generator_widgets/zone_2d_direction_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zone_generator_widgets/zone_2d_rotation_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/zone_generator_widgets/zone_2d_rotation_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zone_generator_widgets/zone_3d_direction_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/zone_generator_widgets/zone_3d_direction_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zone_generator_widgets/zone_3d_rotation_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/zone_generator_widgets/zone_3d_rotation_widget.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/inout/zsurf_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/inout/zsurf_widgets.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/ml_piston_1d_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/ml_piston_1d_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/ml_piston_2d_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/ml_piston_2d_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/moorings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/moorings/moordynplus_body_configuration_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/moorings/moordynplus_body_configuration_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/moorings/moordynplus_line_configuration_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/moorings/moordynplus_line_configuration_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/moorings/moordynplus_parameters_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/moorings/moordynplus_parameters_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/moorings/moorings_configuration_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/moorings/moorings_configuration_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/base_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/outfilters/base_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/cylinder_filter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/outfilters/cylinder_filter_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/group_filter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/outfilters/group_filter_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/mk_filter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/outfilters/mk_filter_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/outparts_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/outfilters/outparts_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/plane_filter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/outfilters/plane_filter_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/pos_filter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/outfilters/pos_filter_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/sphere_filter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/outfilters/sphere_filter_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/outfilters/type_filter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/outfilters/type_filter_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/relaxation_zone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/relaxation_zone/relaxation_zone_file_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/relaxation_zone/relaxation_zone_file_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/relaxation_zone/relaxation_zone_irregular_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/relaxation_zone/relaxation_zone_irregular_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/relaxation_zone/relaxation_zone_regular_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/relaxation_zone/relaxation_zone_regular_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/relaxation_zone/relaxation_zone_uniform_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/relaxation_zone/relaxation_zone_uniform_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/relaxation_zone/velocity_times_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/relaxation_zone/velocity_times_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/special_options_selector_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/special_options_selector_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/variable_res/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/variable_res/bufferbox_edit_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/variable_res/bufferbox_edit_dialog.py -------------------------------------------------------------------------------- /mod/widgets/dock/special_widgets/variable_res/variable_res_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/dock/special_widgets/variable_res/variable_res_config_dialog.py -------------------------------------------------------------------------------- /mod/widgets/properties_dock_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_dock_widget.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/bound_normals_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/bound_normals_dialog.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/faces_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/faces_dialog.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/float_state_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/float_state_dialog.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/initials_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/initials_dialog.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/material_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/material_dialog.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/mdbc_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/mdbc_dialog.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/acc_circular_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/acc_circular_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/acc_rectilinear_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/acc_rectilinear_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/acc_rotational_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/acc_rotational_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/adv_rotation_file_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/adv_rotation_file_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/cir_sinu_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/cir_sinu_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/file_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/file_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/focused_piston_wave_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/focused_piston_wave_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/irregular_flap_wave_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/irregular_flap_wave_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/irregular_piston_wave_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/irregular_piston_wave_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/movement_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/movement_actions.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/movement_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/movement_dialog.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/movement_timeline_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/movement_timeline_placeholder.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/path_file_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/path_file_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/rect_sinu_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/rect_sinu_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/rectilinear_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/rectilinear_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/regular_flap_wave_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/regular_flap_wave_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/regular_piston_wave_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/regular_piston_wave_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/rot_sinu_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/rot_sinu_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/rotation_file_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/rotation_file_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/rotational_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/rotational_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/solitary_piston_wave_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/solitary_piston_wave_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/wait_motion_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/wait_motion_timeline.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/motion/wave_movement_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/motion/wave_movement_actions.py -------------------------------------------------------------------------------- /mod/widgets/properties_widgets/sim_object_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/widgets/properties_widgets/sim_object_dialog.py -------------------------------------------------------------------------------- /mod/xml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/xml/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/importer.py -------------------------------------------------------------------------------- /mod/xml/renderers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/xml/renderers/accinput_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/accinput_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/chrono_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/chrono_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/damping_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/damping_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/definition_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/definition_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/flexstruct_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/flexstruct_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/floatings_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/floatings_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/gauges_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/gauges_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/initials_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/initials_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/inout_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/inout_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/mdbc_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/mdbc_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/mlpistons_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/mlpistons_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/moorings_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/moorings_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/motion_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/motion_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/objects_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/objects_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/outfilters_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/outfilters_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/parameters_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/parameters_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/periodicity_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/periodicity_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/properties_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/properties_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/rzones_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/rzones_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/simulationdomain_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/simulationdomain_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/vres_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/vres_renderer.py -------------------------------------------------------------------------------- /mod/xml/renderers/wavepaddles_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/renderers/wavepaddles_renderer.py -------------------------------------------------------------------------------- /mod/xml/xml_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/xml_exporter.py -------------------------------------------------------------------------------- /mod/xml/xmltodict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/mod/xml/xmltodict.py -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/package.xml -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualSPHysics/DesignSPHysics/HEAD/setup.sh --------------------------------------------------------------------------------