From 9f7df2b147170a4244ad12e1e13a26ac116e7e51 Mon Sep 17 00:00:00 2001 From: moe-ad Date: Tue, 7 Jan 2025 11:22:32 +0100 Subject: [PATCH 1/7] feat: changes to source code --- src/ansys/mapdl/core/commands.py | 2 ++ src/ansys/mapdl/core/mapdl_core.py | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/src/ansys/mapdl/core/commands.py b/src/ansys/mapdl/core/commands.py index 25e88dd528..a09e93a0d5 100644 --- a/src/ansys/mapdl/core/commands.py +++ b/src/ansys/mapdl/core/commands.py @@ -185,6 +185,8 @@ "LSEL", "ASEL", "VSEL", + "ESLN", + "NSLE", ] diff --git a/src/ansys/mapdl/core/mapdl_core.py b/src/ansys/mapdl/core/mapdl_core.py index ad21da82f5..f5cf599b14 100644 --- a/src/ansys/mapdl/core/mapdl_core.py +++ b/src/ansys/mapdl/core/mapdl_core.py @@ -1317,6 +1317,10 @@ def wrap_xsel_function_output(method): return self.geometry.anum elif name == "VSEL": return self.geometry.vnum + elif name == 'ESLN': + return self.mesh.enum + elif name == 'NSLE': + return self.mesh.nnum else: return None From 05442fcea4c28338789b940b30cb812cc9c140ea Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Tue, 7 Jan 2025 10:51:16 +0000 Subject: [PATCH 2/7] chore: adding changelog file 3636.miscellaneous.md [dependabot-skip] --- doc/changelog.d/3636.miscellaneous.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/3636.miscellaneous.md diff --git a/doc/changelog.d/3636.miscellaneous.md b/doc/changelog.d/3636.miscellaneous.md new file mode 100644 index 0000000000..a40c62584c --- /dev/null +++ b/doc/changelog.d/3636.miscellaneous.md @@ -0,0 +1 @@ +Feat: Node/Element selection commands returning selected IDs \ No newline at end of file From 7dc4b6b4dc72771c4a3c1c719244235d477464be Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 10:52:51 +0000 Subject: [PATCH 3/7] ci: auto fixes from pre-commit.com hooks. for more information, see https://pre-commit.ci --- LICENSE | 2 +- .../extended_examples/ex_01-gmsh_example/gmsh_generator.py | 2 +- .../extended_examples/ex_01-gmsh_example/mesh_converter.py | 2 +- .../extended_examples/ex_01-gmsh_example/modal_analysis.py | 2 +- doc/source/examples/extended_examples/executable/cli_rotor.py | 2 +- doc/source/examples/extended_examples/executable/rotor.py | 2 +- doc/source/examples/extended_examples/gui/gui_app.py | 2 +- doc/source/examples/extended_examples/hpc/ml_ga_beam.py | 2 +- .../2d_magnetostatic_solenoid-BodyFlux_Averaging.py | 2 +- examples/00-mapdl-examples/2d_plate_with_a_hole.py | 2 +- examples/00-mapdl-examples/2d_pressure_vessel.py | 2 +- examples/00-mapdl-examples/3d_notch.py | 2 +- examples/00-mapdl-examples/3d_plate_thermal.py | 2 +- examples/00-mapdl-examples/acoustic_analysis.py | 2 +- examples/00-mapdl-examples/basic_dpf_example.py | 2 +- examples/00-mapdl-examples/bracket_static.py | 2 +- examples/00-mapdl-examples/contact_elements.py | 2 +- examples/00-mapdl-examples/cyclic_analysis.py | 2 +- examples/00-mapdl-examples/cyclic_static.py | 2 +- examples/00-mapdl-examples/exhaust_manifold_thermal_stress.py | 2 +- examples/00-mapdl-examples/geometry.py | 2 +- examples/00-mapdl-examples/lathe_cutter.py | 2 +- examples/00-mapdl-examples/mapdl_3d_beam.py | 2 +- examples/00-mapdl-examples/mapdl_beam.py | 2 +- examples/00-mapdl-examples/modal_beam.py | 2 +- examples/00-mapdl-examples/path_operations.py | 2 +- examples/00-mapdl-examples/pressure_vessel.py | 2 +- examples/00-mapdl-examples/pyvista_mesh.py | 2 +- examples/00-mapdl-examples/slashmap_cfx_mapping.py | 2 +- examples/00-mapdl-examples/spotweld.py | 2 +- examples/00-mapdl-examples/torsional_load.py | 2 +- examples/00-mapdl-examples/transient_thermal.py | 2 +- examples/01-geometry/00-keypoints.py | 2 +- examples/01-geometry/01-lines.py | 2 +- examples/01-geometry/02-areas.py | 2 +- examples/01-geometry/03-volumes.py | 2 +- examples/01-geometry/04-primitives.py | 2 +- examples/02-tips-n-tricks/00-example-template.py | 2 +- .../02-tips-n-tricks/01-smoothing-element-size-transitions.py | 2 +- .../02-tips-n-tricks/03-using_inline_functions_and_Query.py | 2 +- examples/02-tips-n-tricks/04-rotational-displacement.py | 2 +- examples/02-tips-n-tricks/05-explore_mapdl_files.py | 2 +- examples/03-general-fea/00-how_finite_element_works.py | 2 +- src/ansys/mapdl/core/__init__.py | 2 +- src/ansys/mapdl/core/_commands/__init__.py | 2 +- src/ansys/mapdl/core/_commands/apdl/__init__.py | 2 +- src/ansys/mapdl/core/_commands/apdl/abbreviations.py | 2 +- src/ansys/mapdl/core/_commands/apdl/array_param.py | 2 +- src/ansys/mapdl/core/_commands/apdl/macro_files.py | 2 +- src/ansys/mapdl/core/_commands/apdl/matrix_op.py | 2 +- src/ansys/mapdl/core/_commands/apdl/parameter_definition.py | 2 +- src/ansys/mapdl/core/_commands/apdl/process_controls.py | 2 +- src/ansys/mapdl/core/_commands/aux12_/__init__.py | 2 +- src/ansys/mapdl/core/_commands/aux12_/general_radiation.py | 2 +- src/ansys/mapdl/core/_commands/aux12_/radiation_mat.py | 2 +- src/ansys/mapdl/core/_commands/aux12_/radiosity_solver.py | 2 +- src/ansys/mapdl/core/_commands/aux15_.py | 2 +- src/ansys/mapdl/core/_commands/aux2_/__init__.py | 2 +- src/ansys/mapdl/core/_commands/aux2_/bin_dump.py | 2 +- src/ansys/mapdl/core/_commands/aux2_/bin_manip.py | 2 +- src/ansys/mapdl/core/_commands/aux3_.py | 2 +- src/ansys/mapdl/core/_commands/conn.py | 2 +- src/ansys/mapdl/core/_commands/database/__init__.py | 2 +- src/ansys/mapdl/core/_commands/database/components.py | 2 +- src/ansys/mapdl/core/_commands/database/coord_sys.py | 2 +- src/ansys/mapdl/core/_commands/database/picking.py | 2 +- src/ansys/mapdl/core/_commands/database/selecting.py | 2 +- src/ansys/mapdl/core/_commands/database/setup.py | 2 +- src/ansys/mapdl/core/_commands/database/working_plane.py | 2 +- src/ansys/mapdl/core/_commands/display_/__init__.py | 2 +- src/ansys/mapdl/core/_commands/display_/setup.py | 2 +- src/ansys/mapdl/core/_commands/graphics_/__init__.py | 2 +- src/ansys/mapdl/core/_commands/graphics_/annotation.py | 2 +- src/ansys/mapdl/core/_commands/graphics_/graphs.py | 2 +- src/ansys/mapdl/core/_commands/graphics_/labeling.py | 2 +- src/ansys/mapdl/core/_commands/graphics_/scaling.py | 2 +- src/ansys/mapdl/core/_commands/graphics_/setup.py | 2 +- src/ansys/mapdl/core/_commands/graphics_/style.py | 2 +- src/ansys/mapdl/core/_commands/graphics_/views.py | 2 +- src/ansys/mapdl/core/_commands/hidden.py | 2 +- src/ansys/mapdl/core/_commands/inq_func.py | 2 +- src/ansys/mapdl/core/_commands/map_cmd.py | 2 +- src/ansys/mapdl/core/_commands/misc/__init__.py | 2 +- src/ansys/mapdl/core/_commands/misc/misc.py | 2 +- src/ansys/mapdl/core/_commands/parse.py | 2 +- src/ansys/mapdl/core/_commands/post1_/__init__.py | 2 +- src/ansys/mapdl/core/_commands/post1_/animation.py | 2 +- src/ansys/mapdl/core/_commands/post1_/controls.py | 2 +- src/ansys/mapdl/core/_commands/post1_/element_table.py | 2 +- src/ansys/mapdl/core/_commands/post1_/failure_criteria.py | 2 +- src/ansys/mapdl/core/_commands/post1_/listing.py | 2 +- src/ansys/mapdl/core/_commands/post1_/load_case.py | 2 +- src/ansys/mapdl/core/_commands/post1_/magnetics_calc.py | 2 +- src/ansys/mapdl/core/_commands/post1_/path_operations.py | 2 +- src/ansys/mapdl/core/_commands/post1_/results.py | 2 +- src/ansys/mapdl/core/_commands/post1_/setup.py | 2 +- src/ansys/mapdl/core/_commands/post1_/special.py | 2 +- src/ansys/mapdl/core/_commands/post1_/status.py | 2 +- src/ansys/mapdl/core/_commands/post1_/surface_operations.py | 2 +- src/ansys/mapdl/core/_commands/post1_/trace_points.py | 2 +- src/ansys/mapdl/core/_commands/post26_/__init__.py | 2 +- src/ansys/mapdl/core/_commands/post26_/controls.py | 2 +- src/ansys/mapdl/core/_commands/post26_/display.py | 2 +- src/ansys/mapdl/core/_commands/post26_/listing.py | 2 +- src/ansys/mapdl/core/_commands/post26_/operations.py | 2 +- src/ansys/mapdl/core/_commands/post26_/setup.py | 2 +- src/ansys/mapdl/core/_commands/post26_/special.py | 2 +- src/ansys/mapdl/core/_commands/post26_/status.py | 2 +- src/ansys/mapdl/core/_commands/preproc/__init__.py | 2 +- src/ansys/mapdl/core/_commands/preproc/areas.py | 2 +- .../mapdl/core/_commands/preproc/artificially_matched_layers.py | 2 +- src/ansys/mapdl/core/_commands/preproc/booleans.py | 2 +- src/ansys/mapdl/core/_commands/preproc/constraint_equations.py | 2 +- src/ansys/mapdl/core/_commands/preproc/coupled_dof.py | 2 +- src/ansys/mapdl/core/_commands/preproc/database.py | 2 +- src/ansys/mapdl/core/_commands/preproc/digitizing.py | 2 +- src/ansys/mapdl/core/_commands/preproc/element_type.py | 2 +- src/ansys/mapdl/core/_commands/preproc/elements.py | 2 +- src/ansys/mapdl/core/_commands/preproc/explicit_dynamics.py | 2 +- src/ansys/mapdl/core/_commands/preproc/hard_points.py | 2 +- src/ansys/mapdl/core/_commands/preproc/keypoints.py | 2 +- src/ansys/mapdl/core/_commands/preproc/lines.py | 2 +- src/ansys/mapdl/core/_commands/preproc/material_data_tables.py | 2 +- src/ansys/mapdl/core/_commands/preproc/materials.py | 2 +- src/ansys/mapdl/core/_commands/preproc/meshing.py | 2 +- src/ansys/mapdl/core/_commands/preproc/morphing.py | 2 +- src/ansys/mapdl/core/_commands/preproc/nodes.py | 2 +- src/ansys/mapdl/core/_commands/preproc/primitives.py | 2 +- src/ansys/mapdl/core/_commands/preproc/real_constants.py | 2 +- src/ansys/mapdl/core/_commands/preproc/sections.py | 2 +- src/ansys/mapdl/core/_commands/preproc/special_purpose.py | 2 +- src/ansys/mapdl/core/_commands/preproc/status.py | 2 +- src/ansys/mapdl/core/_commands/preproc/superelements.py | 2 +- src/ansys/mapdl/core/_commands/preproc/volumes.py | 2 +- src/ansys/mapdl/core/_commands/reduced/__init__.py | 2 +- src/ansys/mapdl/core/_commands/reduced/generation.py | 2 +- src/ansys/mapdl/core/_commands/reduced/preparation.py | 2 +- src/ansys/mapdl/core/_commands/reduced/setup.py | 2 +- src/ansys/mapdl/core/_commands/reduced/use_pass.py | 2 +- src/ansys/mapdl/core/_commands/session/__init__.py | 2 +- src/ansys/mapdl/core/_commands/session/files.py | 2 +- src/ansys/mapdl/core/_commands/session/list_controls.py | 2 +- src/ansys/mapdl/core/_commands/session/processor_entry.py | 2 +- src/ansys/mapdl/core/_commands/session/run_controls.py | 2 +- src/ansys/mapdl/core/_commands/solution/__init__.py | 2 +- src/ansys/mapdl/core/_commands/solution/all_others.py | 2 +- src/ansys/mapdl/core/_commands/solution/analysis_options.py | 2 +- src/ansys/mapdl/core/_commands/solution/birth_and_death.py | 2 +- src/ansys/mapdl/core/_commands/solution/dynamic_options.py | 2 +- src/ansys/mapdl/core/_commands/solution/fe_body_loads.py | 2 +- src/ansys/mapdl/core/_commands/solution/fe_constraints.py | 2 +- src/ansys/mapdl/core/_commands/solution/fe_forces.py | 2 +- src/ansys/mapdl/core/_commands/solution/fe_surface_loads.py | 2 +- src/ansys/mapdl/core/_commands/solution/gap_conditions.py | 2 +- src/ansys/mapdl/core/_commands/solution/inertia.py | 2 +- src/ansys/mapdl/core/_commands/solution/load_step_operations.py | 2 +- src/ansys/mapdl/core/_commands/solution/load_step_options.py | 2 +- src/ansys/mapdl/core/_commands/solution/master_dof.py | 2 +- src/ansys/mapdl/core/_commands/solution/miscellaneous_loads.py | 2 +- .../solution/multi_field_solver_convergence_controls.py | 2 +- .../solution/multi_field_solver_definition_commands.py | 2 +- .../_commands/solution/multi_field_solver_global_controls.py | 2 +- .../_commands/solution/multi_field_solver_interface_mapping.py | 2 +- .../core/_commands/solution/multi_field_solver_load_transfer.py | 2 +- .../core/_commands/solution/multi_field_solver_time_controls.py | 2 +- src/ansys/mapdl/core/_commands/solution/nonlinear_options.py | 2 +- src/ansys/mapdl/core/_commands/solution/ocean.py | 2 +- src/ansys/mapdl/core/_commands/solution/radiosity.py | 2 +- src/ansys/mapdl/core/_commands/solution/rezoning.py | 2 +- src/ansys/mapdl/core/_commands/solution/solid_body_loads.py | 2 +- src/ansys/mapdl/core/_commands/solution/solid_constraints.py | 2 +- src/ansys/mapdl/core/_commands/solution/solid_forces.py | 2 +- src/ansys/mapdl/core/_commands/solution/solid_surface_loads.py | 2 +- src/ansys/mapdl/core/_commands/solution/solution_status.py | 2 +- src/ansys/mapdl/core/_commands/solution/spectrum_options.py | 2 +- src/ansys/mapdl/core/_commands/solution/twod_to_3d_analysis.py | 2 +- src/ansys/mapdl/core/_version.py | 2 +- src/ansys/mapdl/core/cli/__init__.py | 2 +- src/ansys/mapdl/core/cli/convert.py | 2 +- src/ansys/mapdl/core/cli/list_instances.py | 2 +- src/ansys/mapdl/core/cli/start.py | 2 +- src/ansys/mapdl/core/cli/stop.py | 2 +- src/ansys/mapdl/core/commands.py | 2 +- src/ansys/mapdl/core/common_grpc.py | 2 +- src/ansys/mapdl/core/component.py | 2 +- src/ansys/mapdl/core/convert.py | 2 +- src/ansys/mapdl/core/database/__init__.py | 2 +- src/ansys/mapdl/core/database/database.py | 2 +- src/ansys/mapdl/core/database/elems.py | 2 +- src/ansys/mapdl/core/database/nodes.py | 2 +- src/ansys/mapdl/core/errors.py | 2 +- src/ansys/mapdl/core/examples/__init__.py | 2 +- src/ansys/mapdl/core/examples/downloads.py | 2 +- src/ansys/mapdl/core/examples/examples.py | 2 +- src/ansys/mapdl/core/examples/verif_files.py | 2 +- src/ansys/mapdl/core/helpers.py | 2 +- src/ansys/mapdl/core/information.py | 2 +- src/ansys/mapdl/core/inline_functions/__init__.py | 2 +- src/ansys/mapdl/core/inline_functions/component_queries.py | 2 +- src/ansys/mapdl/core/inline_functions/connectivity_queries.py | 2 +- src/ansys/mapdl/core/inline_functions/core.py | 2 +- src/ansys/mapdl/core/inline_functions/geometry_queries.py | 2 +- src/ansys/mapdl/core/inline_functions/inline_functions.py | 2 +- src/ansys/mapdl/core/inline_functions/line_queries.py | 2 +- src/ansys/mapdl/core/inline_functions/nearest_queries.py | 2 +- src/ansys/mapdl/core/inline_functions/normals_queries.py | 2 +- src/ansys/mapdl/core/inline_functions/scalar_queries.py | 2 +- src/ansys/mapdl/core/inline_functions/selection_queries.py | 2 +- src/ansys/mapdl/core/jupyter.py | 2 +- src/ansys/mapdl/core/krylov.py | 2 +- src/ansys/mapdl/core/launcher.py | 2 +- src/ansys/mapdl/core/licensing.py | 2 +- src/ansys/mapdl/core/logging.py | 2 +- src/ansys/mapdl/core/mapdl.py | 2 +- src/ansys/mapdl/core/mapdl_console.py | 2 +- src/ansys/mapdl/core/mapdl_core.py | 2 +- src/ansys/mapdl/core/mapdl_extended.py | 2 +- src/ansys/mapdl/core/mapdl_geometry.py | 2 +- src/ansys/mapdl/core/mapdl_grpc.py | 2 +- src/ansys/mapdl/core/mapdl_inprocess.py | 2 +- src/ansys/mapdl/core/mapdl_types.py | 2 +- src/ansys/mapdl/core/mesh/__init__.py | 2 +- src/ansys/mapdl/core/mesh/mesh.py | 2 +- src/ansys/mapdl/core/mesh_grpc.py | 2 +- src/ansys/mapdl/core/misc.py | 2 +- src/ansys/mapdl/core/parameters.py | 2 +- src/ansys/mapdl/core/plotting/__init__.py | 2 +- src/ansys/mapdl/core/plotting/consts.py | 2 +- src/ansys/mapdl/core/plotting/plotting_defaults.py | 2 +- src/ansys/mapdl/core/plotting/theme.py | 2 +- src/ansys/mapdl/core/plotting/visualizer.py | 2 +- src/ansys/mapdl/core/pool.py | 2 +- src/ansys/mapdl/core/post.py | 2 +- src/ansys/mapdl/core/report.py | 2 +- src/ansys/mapdl/core/solution.py | 2 +- src/ansys/mapdl/core/xpl.py | 2 +- tests/common.py | 2 +- tests/conftest.py | 2 +- tests/test_cli.py | 2 +- tests/test_commands.py | 2 +- tests/test_component.py | 2 +- tests/test_console.py | 2 +- tests/test_convert.py | 2 +- tests/test_database.py | 2 +- tests/test_dpf.py | 2 +- tests/test_element.py | 2 +- tests/test_errors.py | 2 +- tests/test_examples.py | 2 +- tests/test_geometry.py | 2 +- tests/test_grpc.py | 2 +- tests/test_importing_geometries.py | 2 +- tests/test_information.py | 2 +- tests/test_inline_functions/test_component_queries.py | 2 +- tests/test_inline_functions/test_connectivity_queries.py | 2 +- tests/test_inline_functions/test_field_component_queries.py | 2 +- tests/test_inline_functions/test_geometry_queries.py | 2 +- tests/test_inline_functions/test_line_component_queries.py | 2 +- tests/test_inline_functions/test_nearest_queries.py | 2 +- tests/test_inline_functions/test_normals_queries.py | 2 +- tests/test_inline_functions/test_query.py | 2 +- tests/test_inline_functions/test_selection_queries.py | 2 +- tests/test_krylov.py | 2 +- tests/test_launcher.py | 2 +- tests/test_launcher_remote.py | 2 +- tests/test_licensing.py | 2 +- tests/test_logging.py | 2 +- tests/test_mapdl.py | 2 +- tests/test_mesh_grpc.py | 2 +- tests/test_misc.py | 2 +- tests/test_parameters.py | 2 +- tests/test_plotting.py | 2 +- tests/test_pool.py | 2 +- tests/test_post.py | 2 +- tests/test_report.py | 2 +- tests/test_solution.py | 2 +- tests/test_theme.py | 2 +- tests/test_xpl.py | 2 +- 277 files changed, 277 insertions(+), 277 deletions(-) diff --git a/LICENSE b/LICENSE index f91e210be6..b92019e249 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +Copyright (c) 2016 - 2025 ANSYS, Inc. and/or its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/doc/source/examples/extended_examples/ex_01-gmsh_example/gmsh_generator.py b/doc/source/examples/extended_examples/ex_01-gmsh_example/gmsh_generator.py index dd76f89136..b2d42ecb94 100644 --- a/doc/source/examples/extended_examples/ex_01-gmsh_example/gmsh_generator.py +++ b/doc/source/examples/extended_examples/ex_01-gmsh_example/gmsh_generator.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/doc/source/examples/extended_examples/ex_01-gmsh_example/mesh_converter.py b/doc/source/examples/extended_examples/ex_01-gmsh_example/mesh_converter.py index fba914233a..1592105de5 100644 --- a/doc/source/examples/extended_examples/ex_01-gmsh_example/mesh_converter.py +++ b/doc/source/examples/extended_examples/ex_01-gmsh_example/mesh_converter.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/doc/source/examples/extended_examples/ex_01-gmsh_example/modal_analysis.py b/doc/source/examples/extended_examples/ex_01-gmsh_example/modal_analysis.py index 9e37717777..f5f3df7173 100644 --- a/doc/source/examples/extended_examples/ex_01-gmsh_example/modal_analysis.py +++ b/doc/source/examples/extended_examples/ex_01-gmsh_example/modal_analysis.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/doc/source/examples/extended_examples/executable/cli_rotor.py b/doc/source/examples/extended_examples/executable/cli_rotor.py index 8004fc5c89..e9bd6a53b1 100644 --- a/doc/source/examples/extended_examples/executable/cli_rotor.py +++ b/doc/source/examples/extended_examples/executable/cli_rotor.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/doc/source/examples/extended_examples/executable/rotor.py b/doc/source/examples/extended_examples/executable/rotor.py index 4811145698..19cd35be68 100644 --- a/doc/source/examples/extended_examples/executable/rotor.py +++ b/doc/source/examples/extended_examples/executable/rotor.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/doc/source/examples/extended_examples/gui/gui_app.py b/doc/source/examples/extended_examples/gui/gui_app.py index 2b21bc4b4e..df2077164d 100644 --- a/doc/source/examples/extended_examples/gui/gui_app.py +++ b/doc/source/examples/extended_examples/gui/gui_app.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/doc/source/examples/extended_examples/hpc/ml_ga_beam.py b/doc/source/examples/extended_examples/hpc/ml_ga_beam.py index f4633dab3f..485c9ac597 100644 --- a/doc/source/examples/extended_examples/hpc/ml_ga_beam.py +++ b/doc/source/examples/extended_examples/hpc/ml_ga_beam.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/2d_magnetostatic_solenoid-BodyFlux_Averaging.py b/examples/00-mapdl-examples/2d_magnetostatic_solenoid-BodyFlux_Averaging.py index a6a0cda21a..ed8a9b9ef8 100644 --- a/examples/00-mapdl-examples/2d_magnetostatic_solenoid-BodyFlux_Averaging.py +++ b/examples/00-mapdl-examples/2d_magnetostatic_solenoid-BodyFlux_Averaging.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/2d_plate_with_a_hole.py b/examples/00-mapdl-examples/2d_plate_with_a_hole.py index 78716ee207..4539689658 100644 --- a/examples/00-mapdl-examples/2d_plate_with_a_hole.py +++ b/examples/00-mapdl-examples/2d_plate_with_a_hole.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/2d_pressure_vessel.py b/examples/00-mapdl-examples/2d_pressure_vessel.py index ed21c801a2..a157945e13 100644 --- a/examples/00-mapdl-examples/2d_pressure_vessel.py +++ b/examples/00-mapdl-examples/2d_pressure_vessel.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/3d_notch.py b/examples/00-mapdl-examples/3d_notch.py index e90bfebbed..5c1cef162a 100644 --- a/examples/00-mapdl-examples/3d_notch.py +++ b/examples/00-mapdl-examples/3d_notch.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/3d_plate_thermal.py b/examples/00-mapdl-examples/3d_plate_thermal.py index 0eb3202c79..fbaa7fb9b7 100644 --- a/examples/00-mapdl-examples/3d_plate_thermal.py +++ b/examples/00-mapdl-examples/3d_plate_thermal.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/acoustic_analysis.py b/examples/00-mapdl-examples/acoustic_analysis.py index f37ded1a7e..09ee258647 100644 --- a/examples/00-mapdl-examples/acoustic_analysis.py +++ b/examples/00-mapdl-examples/acoustic_analysis.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/basic_dpf_example.py b/examples/00-mapdl-examples/basic_dpf_example.py index 11d574cde5..7f5d43953b 100644 --- a/examples/00-mapdl-examples/basic_dpf_example.py +++ b/examples/00-mapdl-examples/basic_dpf_example.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/bracket_static.py b/examples/00-mapdl-examples/bracket_static.py index 38d6fdddce..5d4167c78b 100644 --- a/examples/00-mapdl-examples/bracket_static.py +++ b/examples/00-mapdl-examples/bracket_static.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/contact_elements.py b/examples/00-mapdl-examples/contact_elements.py index 06a40dacb0..b5696c0270 100644 --- a/examples/00-mapdl-examples/contact_elements.py +++ b/examples/00-mapdl-examples/contact_elements.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/cyclic_analysis.py b/examples/00-mapdl-examples/cyclic_analysis.py index 88628ec02a..edf09292e5 100644 --- a/examples/00-mapdl-examples/cyclic_analysis.py +++ b/examples/00-mapdl-examples/cyclic_analysis.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/cyclic_static.py b/examples/00-mapdl-examples/cyclic_static.py index 01fa28e4b1..92a8347590 100644 --- a/examples/00-mapdl-examples/cyclic_static.py +++ b/examples/00-mapdl-examples/cyclic_static.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/exhaust_manifold_thermal_stress.py b/examples/00-mapdl-examples/exhaust_manifold_thermal_stress.py index c795270524..ee0c870af9 100644 --- a/examples/00-mapdl-examples/exhaust_manifold_thermal_stress.py +++ b/examples/00-mapdl-examples/exhaust_manifold_thermal_stress.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/geometry.py b/examples/00-mapdl-examples/geometry.py index b4e0f6ab02..ec480c118b 100644 --- a/examples/00-mapdl-examples/geometry.py +++ b/examples/00-mapdl-examples/geometry.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/lathe_cutter.py b/examples/00-mapdl-examples/lathe_cutter.py index 844b65987a..bd32b76305 100644 --- a/examples/00-mapdl-examples/lathe_cutter.py +++ b/examples/00-mapdl-examples/lathe_cutter.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/mapdl_3d_beam.py b/examples/00-mapdl-examples/mapdl_3d_beam.py index db94474280..b3acaec167 100644 --- a/examples/00-mapdl-examples/mapdl_3d_beam.py +++ b/examples/00-mapdl-examples/mapdl_3d_beam.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/mapdl_beam.py b/examples/00-mapdl-examples/mapdl_beam.py index 880550e875..5caa688133 100644 --- a/examples/00-mapdl-examples/mapdl_beam.py +++ b/examples/00-mapdl-examples/mapdl_beam.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/modal_beam.py b/examples/00-mapdl-examples/modal_beam.py index 262e83e9c8..e08c888eb8 100644 --- a/examples/00-mapdl-examples/modal_beam.py +++ b/examples/00-mapdl-examples/modal_beam.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/path_operations.py b/examples/00-mapdl-examples/path_operations.py index c589769c15..5925de8105 100644 --- a/examples/00-mapdl-examples/path_operations.py +++ b/examples/00-mapdl-examples/path_operations.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/pressure_vessel.py b/examples/00-mapdl-examples/pressure_vessel.py index 6062b06e84..36c2fab461 100644 --- a/examples/00-mapdl-examples/pressure_vessel.py +++ b/examples/00-mapdl-examples/pressure_vessel.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/pyvista_mesh.py b/examples/00-mapdl-examples/pyvista_mesh.py index b8af80774d..c1f9487ee8 100644 --- a/examples/00-mapdl-examples/pyvista_mesh.py +++ b/examples/00-mapdl-examples/pyvista_mesh.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/slashmap_cfx_mapping.py b/examples/00-mapdl-examples/slashmap_cfx_mapping.py index ae0ce233a3..8019db8a62 100644 --- a/examples/00-mapdl-examples/slashmap_cfx_mapping.py +++ b/examples/00-mapdl-examples/slashmap_cfx_mapping.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/spotweld.py b/examples/00-mapdl-examples/spotweld.py index 0557d0d768..ed734aeebb 100644 --- a/examples/00-mapdl-examples/spotweld.py +++ b/examples/00-mapdl-examples/spotweld.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/torsional_load.py b/examples/00-mapdl-examples/torsional_load.py index dbd0ebff5e..942bf6a9ca 100644 --- a/examples/00-mapdl-examples/torsional_load.py +++ b/examples/00-mapdl-examples/torsional_load.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/00-mapdl-examples/transient_thermal.py b/examples/00-mapdl-examples/transient_thermal.py index e199b3dbe2..6e8e6999a3 100644 --- a/examples/00-mapdl-examples/transient_thermal.py +++ b/examples/00-mapdl-examples/transient_thermal.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/01-geometry/00-keypoints.py b/examples/01-geometry/00-keypoints.py index 02e89cd1e5..de644f0084 100644 --- a/examples/01-geometry/00-keypoints.py +++ b/examples/01-geometry/00-keypoints.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/01-geometry/01-lines.py b/examples/01-geometry/01-lines.py index e7690cd705..35ea1f9bf6 100644 --- a/examples/01-geometry/01-lines.py +++ b/examples/01-geometry/01-lines.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/01-geometry/02-areas.py b/examples/01-geometry/02-areas.py index 98ed596ce4..4db0660988 100644 --- a/examples/01-geometry/02-areas.py +++ b/examples/01-geometry/02-areas.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/01-geometry/03-volumes.py b/examples/01-geometry/03-volumes.py index a2c03754f2..79f2ae7dae 100644 --- a/examples/01-geometry/03-volumes.py +++ b/examples/01-geometry/03-volumes.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/01-geometry/04-primitives.py b/examples/01-geometry/04-primitives.py index b33568c14d..1d6ebf4de0 100644 --- a/examples/01-geometry/04-primitives.py +++ b/examples/01-geometry/04-primitives.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/02-tips-n-tricks/00-example-template.py b/examples/02-tips-n-tricks/00-example-template.py index 511ca53042..fb03d0c5ca 100644 --- a/examples/02-tips-n-tricks/00-example-template.py +++ b/examples/02-tips-n-tricks/00-example-template.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/02-tips-n-tricks/01-smoothing-element-size-transitions.py b/examples/02-tips-n-tricks/01-smoothing-element-size-transitions.py index 1c07af7d7d..c8daf637ae 100644 --- a/examples/02-tips-n-tricks/01-smoothing-element-size-transitions.py +++ b/examples/02-tips-n-tricks/01-smoothing-element-size-transitions.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/02-tips-n-tricks/03-using_inline_functions_and_Query.py b/examples/02-tips-n-tricks/03-using_inline_functions_and_Query.py index 50e32db4d7..d5166c9aad 100644 --- a/examples/02-tips-n-tricks/03-using_inline_functions_and_Query.py +++ b/examples/02-tips-n-tricks/03-using_inline_functions_and_Query.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/02-tips-n-tricks/04-rotational-displacement.py b/examples/02-tips-n-tricks/04-rotational-displacement.py index e33c02dce9..3f7bf8ca40 100644 --- a/examples/02-tips-n-tricks/04-rotational-displacement.py +++ b/examples/02-tips-n-tricks/04-rotational-displacement.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/02-tips-n-tricks/05-explore_mapdl_files.py b/examples/02-tips-n-tricks/05-explore_mapdl_files.py index 1b16688808..7598aad2df 100644 --- a/examples/02-tips-n-tricks/05-explore_mapdl_files.py +++ b/examples/02-tips-n-tricks/05-explore_mapdl_files.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/examples/03-general-fea/00-how_finite_element_works.py b/examples/03-general-fea/00-how_finite_element_works.py index aa5f655d27..e433537f4f 100644 --- a/examples/03-general-fea/00-how_finite_element_works.py +++ b/examples/03-general-fea/00-how_finite_element_works.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/__init__.py b/src/ansys/mapdl/core/__init__.py index 9ed873482d..3daee2418e 100644 --- a/src/ansys/mapdl/core/__init__.py +++ b/src/ansys/mapdl/core/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/__init__.py b/src/ansys/mapdl/core/_commands/__init__.py index aa3054dc1b..b55dfdc012 100644 --- a/src/ansys/mapdl/core/_commands/__init__.py +++ b/src/ansys/mapdl/core/_commands/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/apdl/__init__.py b/src/ansys/mapdl/core/_commands/apdl/__init__.py index 81269ecb9c..dfdea9c457 100644 --- a/src/ansys/mapdl/core/_commands/apdl/__init__.py +++ b/src/ansys/mapdl/core/_commands/apdl/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/apdl/abbreviations.py b/src/ansys/mapdl/core/_commands/apdl/abbreviations.py index 8567d9c234..9958ac932a 100644 --- a/src/ansys/mapdl/core/_commands/apdl/abbreviations.py +++ b/src/ansys/mapdl/core/_commands/apdl/abbreviations.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/apdl/array_param.py b/src/ansys/mapdl/core/_commands/apdl/array_param.py index 8306549d67..31f255b895 100644 --- a/src/ansys/mapdl/core/_commands/apdl/array_param.py +++ b/src/ansys/mapdl/core/_commands/apdl/array_param.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/apdl/macro_files.py b/src/ansys/mapdl/core/_commands/apdl/macro_files.py index 1593861eae..3c26402ca1 100644 --- a/src/ansys/mapdl/core/_commands/apdl/macro_files.py +++ b/src/ansys/mapdl/core/_commands/apdl/macro_files.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/apdl/matrix_op.py b/src/ansys/mapdl/core/_commands/apdl/matrix_op.py index ac4af814e6..35ae6eaa2b 100644 --- a/src/ansys/mapdl/core/_commands/apdl/matrix_op.py +++ b/src/ansys/mapdl/core/_commands/apdl/matrix_op.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/apdl/parameter_definition.py b/src/ansys/mapdl/core/_commands/apdl/parameter_definition.py index 75915afe8e..37e27f1f20 100644 --- a/src/ansys/mapdl/core/_commands/apdl/parameter_definition.py +++ b/src/ansys/mapdl/core/_commands/apdl/parameter_definition.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/apdl/process_controls.py b/src/ansys/mapdl/core/_commands/apdl/process_controls.py index 69d48e02e6..1225b5cae5 100644 --- a/src/ansys/mapdl/core/_commands/apdl/process_controls.py +++ b/src/ansys/mapdl/core/_commands/apdl/process_controls.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/aux12_/__init__.py b/src/ansys/mapdl/core/_commands/aux12_/__init__.py index bf2f90a475..4c7a98ae01 100644 --- a/src/ansys/mapdl/core/_commands/aux12_/__init__.py +++ b/src/ansys/mapdl/core/_commands/aux12_/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/aux12_/general_radiation.py b/src/ansys/mapdl/core/_commands/aux12_/general_radiation.py index 58463614df..b2bfdf0d67 100644 --- a/src/ansys/mapdl/core/_commands/aux12_/general_radiation.py +++ b/src/ansys/mapdl/core/_commands/aux12_/general_radiation.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/aux12_/radiation_mat.py b/src/ansys/mapdl/core/_commands/aux12_/radiation_mat.py index ee9354a129..7be6c4c412 100644 --- a/src/ansys/mapdl/core/_commands/aux12_/radiation_mat.py +++ b/src/ansys/mapdl/core/_commands/aux12_/radiation_mat.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/aux12_/radiosity_solver.py b/src/ansys/mapdl/core/_commands/aux12_/radiosity_solver.py index 580637f1d2..3d96a7bc6b 100644 --- a/src/ansys/mapdl/core/_commands/aux12_/radiosity_solver.py +++ b/src/ansys/mapdl/core/_commands/aux12_/radiosity_solver.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/aux15_.py b/src/ansys/mapdl/core/_commands/aux15_.py index eeaf734280..c9396074a2 100644 --- a/src/ansys/mapdl/core/_commands/aux15_.py +++ b/src/ansys/mapdl/core/_commands/aux15_.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/aux2_/__init__.py b/src/ansys/mapdl/core/_commands/aux2_/__init__.py index 09bdaa997b..d388e85a7a 100644 --- a/src/ansys/mapdl/core/_commands/aux2_/__init__.py +++ b/src/ansys/mapdl/core/_commands/aux2_/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/aux2_/bin_dump.py b/src/ansys/mapdl/core/_commands/aux2_/bin_dump.py index 29eb8fcd0d..4a588cf2a9 100644 --- a/src/ansys/mapdl/core/_commands/aux2_/bin_dump.py +++ b/src/ansys/mapdl/core/_commands/aux2_/bin_dump.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/aux2_/bin_manip.py b/src/ansys/mapdl/core/_commands/aux2_/bin_manip.py index 0723d718e4..cfd7a7cc6a 100644 --- a/src/ansys/mapdl/core/_commands/aux2_/bin_manip.py +++ b/src/ansys/mapdl/core/_commands/aux2_/bin_manip.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/aux3_.py b/src/ansys/mapdl/core/_commands/aux3_.py index 6dbde5503b..0119d56be2 100644 --- a/src/ansys/mapdl/core/_commands/aux3_.py +++ b/src/ansys/mapdl/core/_commands/aux3_.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/conn.py b/src/ansys/mapdl/core/_commands/conn.py index 39d8fa699a..9d179627f4 100644 --- a/src/ansys/mapdl/core/_commands/conn.py +++ b/src/ansys/mapdl/core/_commands/conn.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/database/__init__.py b/src/ansys/mapdl/core/_commands/database/__init__.py index 931aa61355..d989a66010 100644 --- a/src/ansys/mapdl/core/_commands/database/__init__.py +++ b/src/ansys/mapdl/core/_commands/database/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/database/components.py b/src/ansys/mapdl/core/_commands/database/components.py index b826947cec..466b86cbfe 100644 --- a/src/ansys/mapdl/core/_commands/database/components.py +++ b/src/ansys/mapdl/core/_commands/database/components.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/database/coord_sys.py b/src/ansys/mapdl/core/_commands/database/coord_sys.py index 7d6fd9d779..ee0e554ecb 100644 --- a/src/ansys/mapdl/core/_commands/database/coord_sys.py +++ b/src/ansys/mapdl/core/_commands/database/coord_sys.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/database/picking.py b/src/ansys/mapdl/core/_commands/database/picking.py index 16fbc282f2..3055b203ac 100644 --- a/src/ansys/mapdl/core/_commands/database/picking.py +++ b/src/ansys/mapdl/core/_commands/database/picking.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/database/selecting.py b/src/ansys/mapdl/core/_commands/database/selecting.py index 21831ab7cb..17f10b5837 100644 --- a/src/ansys/mapdl/core/_commands/database/selecting.py +++ b/src/ansys/mapdl/core/_commands/database/selecting.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/database/setup.py b/src/ansys/mapdl/core/_commands/database/setup.py index c73c27f597..9294c809d2 100644 --- a/src/ansys/mapdl/core/_commands/database/setup.py +++ b/src/ansys/mapdl/core/_commands/database/setup.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/database/working_plane.py b/src/ansys/mapdl/core/_commands/database/working_plane.py index 3acbd48521..757f1fa671 100644 --- a/src/ansys/mapdl/core/_commands/database/working_plane.py +++ b/src/ansys/mapdl/core/_commands/database/working_plane.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/display_/__init__.py b/src/ansys/mapdl/core/_commands/display_/__init__.py index 69da8824a9..737c36038c 100644 --- a/src/ansys/mapdl/core/_commands/display_/__init__.py +++ b/src/ansys/mapdl/core/_commands/display_/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/display_/setup.py b/src/ansys/mapdl/core/_commands/display_/setup.py index 061e1a8145..6bdbf3607b 100644 --- a/src/ansys/mapdl/core/_commands/display_/setup.py +++ b/src/ansys/mapdl/core/_commands/display_/setup.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/graphics_/__init__.py b/src/ansys/mapdl/core/_commands/graphics_/__init__.py index 83fc982ed8..a827eef704 100644 --- a/src/ansys/mapdl/core/_commands/graphics_/__init__.py +++ b/src/ansys/mapdl/core/_commands/graphics_/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/graphics_/annotation.py b/src/ansys/mapdl/core/_commands/graphics_/annotation.py index 41622d9309..830a5a9b95 100644 --- a/src/ansys/mapdl/core/_commands/graphics_/annotation.py +++ b/src/ansys/mapdl/core/_commands/graphics_/annotation.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/graphics_/graphs.py b/src/ansys/mapdl/core/_commands/graphics_/graphs.py index b7de8b316e..d8bdc59174 100644 --- a/src/ansys/mapdl/core/_commands/graphics_/graphs.py +++ b/src/ansys/mapdl/core/_commands/graphics_/graphs.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/graphics_/labeling.py b/src/ansys/mapdl/core/_commands/graphics_/labeling.py index f5b255c3c3..5d773cf524 100644 --- a/src/ansys/mapdl/core/_commands/graphics_/labeling.py +++ b/src/ansys/mapdl/core/_commands/graphics_/labeling.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/graphics_/scaling.py b/src/ansys/mapdl/core/_commands/graphics_/scaling.py index 56cb163773..3d1460d6cc 100644 --- a/src/ansys/mapdl/core/_commands/graphics_/scaling.py +++ b/src/ansys/mapdl/core/_commands/graphics_/scaling.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/graphics_/setup.py b/src/ansys/mapdl/core/_commands/graphics_/setup.py index 9c05629368..acc229a52f 100644 --- a/src/ansys/mapdl/core/_commands/graphics_/setup.py +++ b/src/ansys/mapdl/core/_commands/graphics_/setup.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/graphics_/style.py b/src/ansys/mapdl/core/_commands/graphics_/style.py index 958660d95d..e2ad27d1da 100644 --- a/src/ansys/mapdl/core/_commands/graphics_/style.py +++ b/src/ansys/mapdl/core/_commands/graphics_/style.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/graphics_/views.py b/src/ansys/mapdl/core/_commands/graphics_/views.py index 5cbfa487be..fd1e1a3dfe 100644 --- a/src/ansys/mapdl/core/_commands/graphics_/views.py +++ b/src/ansys/mapdl/core/_commands/graphics_/views.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/hidden.py b/src/ansys/mapdl/core/_commands/hidden.py index e5518c1a1c..85a4e45c65 100644 --- a/src/ansys/mapdl/core/_commands/hidden.py +++ b/src/ansys/mapdl/core/_commands/hidden.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/inq_func.py b/src/ansys/mapdl/core/_commands/inq_func.py index 47b45a4e02..a5fc2e0817 100644 --- a/src/ansys/mapdl/core/_commands/inq_func.py +++ b/src/ansys/mapdl/core/_commands/inq_func.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/map_cmd.py b/src/ansys/mapdl/core/_commands/map_cmd.py index 5c5649bd3b..979ae076d0 100644 --- a/src/ansys/mapdl/core/_commands/map_cmd.py +++ b/src/ansys/mapdl/core/_commands/map_cmd.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/misc/__init__.py b/src/ansys/mapdl/core/_commands/misc/__init__.py index 7ca71db770..92e037a9d4 100644 --- a/src/ansys/mapdl/core/_commands/misc/__init__.py +++ b/src/ansys/mapdl/core/_commands/misc/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/misc/misc.py b/src/ansys/mapdl/core/_commands/misc/misc.py index b167898b4c..fd4c29ab9a 100644 --- a/src/ansys/mapdl/core/_commands/misc/misc.py +++ b/src/ansys/mapdl/core/_commands/misc/misc.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/parse.py b/src/ansys/mapdl/core/_commands/parse.py index a1a4820dcc..05fc560643 100644 --- a/src/ansys/mapdl/core/_commands/parse.py +++ b/src/ansys/mapdl/core/_commands/parse.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/__init__.py b/src/ansys/mapdl/core/_commands/post1_/__init__.py index 7da12c9c15..62488e4ef3 100644 --- a/src/ansys/mapdl/core/_commands/post1_/__init__.py +++ b/src/ansys/mapdl/core/_commands/post1_/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/animation.py b/src/ansys/mapdl/core/_commands/post1_/animation.py index fc0fa0be42..9a9718d715 100644 --- a/src/ansys/mapdl/core/_commands/post1_/animation.py +++ b/src/ansys/mapdl/core/_commands/post1_/animation.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/controls.py b/src/ansys/mapdl/core/_commands/post1_/controls.py index d5b356da35..4270918066 100644 --- a/src/ansys/mapdl/core/_commands/post1_/controls.py +++ b/src/ansys/mapdl/core/_commands/post1_/controls.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/element_table.py b/src/ansys/mapdl/core/_commands/post1_/element_table.py index 74cfb80978..7152d8eb28 100644 --- a/src/ansys/mapdl/core/_commands/post1_/element_table.py +++ b/src/ansys/mapdl/core/_commands/post1_/element_table.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/failure_criteria.py b/src/ansys/mapdl/core/_commands/post1_/failure_criteria.py index b16d69ded7..b401a7e3d8 100644 --- a/src/ansys/mapdl/core/_commands/post1_/failure_criteria.py +++ b/src/ansys/mapdl/core/_commands/post1_/failure_criteria.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/listing.py b/src/ansys/mapdl/core/_commands/post1_/listing.py index 4e43929c80..7e52cc5027 100644 --- a/src/ansys/mapdl/core/_commands/post1_/listing.py +++ b/src/ansys/mapdl/core/_commands/post1_/listing.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/load_case.py b/src/ansys/mapdl/core/_commands/post1_/load_case.py index a3baca367b..6bfccd8294 100644 --- a/src/ansys/mapdl/core/_commands/post1_/load_case.py +++ b/src/ansys/mapdl/core/_commands/post1_/load_case.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/magnetics_calc.py b/src/ansys/mapdl/core/_commands/post1_/magnetics_calc.py index e04478870f..640e6fbcfd 100644 --- a/src/ansys/mapdl/core/_commands/post1_/magnetics_calc.py +++ b/src/ansys/mapdl/core/_commands/post1_/magnetics_calc.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/path_operations.py b/src/ansys/mapdl/core/_commands/post1_/path_operations.py index ead389b32b..ba7794fb83 100644 --- a/src/ansys/mapdl/core/_commands/post1_/path_operations.py +++ b/src/ansys/mapdl/core/_commands/post1_/path_operations.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/results.py b/src/ansys/mapdl/core/_commands/post1_/results.py index ffb5f61036..1b588fad57 100644 --- a/src/ansys/mapdl/core/_commands/post1_/results.py +++ b/src/ansys/mapdl/core/_commands/post1_/results.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/setup.py b/src/ansys/mapdl/core/_commands/post1_/setup.py index 318f4f9c7f..cea5f10075 100644 --- a/src/ansys/mapdl/core/_commands/post1_/setup.py +++ b/src/ansys/mapdl/core/_commands/post1_/setup.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/special.py b/src/ansys/mapdl/core/_commands/post1_/special.py index 798bc5751e..2f3333963f 100644 --- a/src/ansys/mapdl/core/_commands/post1_/special.py +++ b/src/ansys/mapdl/core/_commands/post1_/special.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/status.py b/src/ansys/mapdl/core/_commands/post1_/status.py index db6c545899..f636aa2207 100644 --- a/src/ansys/mapdl/core/_commands/post1_/status.py +++ b/src/ansys/mapdl/core/_commands/post1_/status.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/surface_operations.py b/src/ansys/mapdl/core/_commands/post1_/surface_operations.py index da3aff7c8d..d60f543ca6 100644 --- a/src/ansys/mapdl/core/_commands/post1_/surface_operations.py +++ b/src/ansys/mapdl/core/_commands/post1_/surface_operations.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post1_/trace_points.py b/src/ansys/mapdl/core/_commands/post1_/trace_points.py index c116e9065e..c0e81cb8fb 100644 --- a/src/ansys/mapdl/core/_commands/post1_/trace_points.py +++ b/src/ansys/mapdl/core/_commands/post1_/trace_points.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post26_/__init__.py b/src/ansys/mapdl/core/_commands/post26_/__init__.py index 83cc0ecb60..5f396473ec 100644 --- a/src/ansys/mapdl/core/_commands/post26_/__init__.py +++ b/src/ansys/mapdl/core/_commands/post26_/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post26_/controls.py b/src/ansys/mapdl/core/_commands/post26_/controls.py index d68c5514e3..7e281b7a5f 100644 --- a/src/ansys/mapdl/core/_commands/post26_/controls.py +++ b/src/ansys/mapdl/core/_commands/post26_/controls.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post26_/display.py b/src/ansys/mapdl/core/_commands/post26_/display.py index 11c63d0de9..93550a5d46 100644 --- a/src/ansys/mapdl/core/_commands/post26_/display.py +++ b/src/ansys/mapdl/core/_commands/post26_/display.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post26_/listing.py b/src/ansys/mapdl/core/_commands/post26_/listing.py index 9130320622..f4290fde89 100644 --- a/src/ansys/mapdl/core/_commands/post26_/listing.py +++ b/src/ansys/mapdl/core/_commands/post26_/listing.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post26_/operations.py b/src/ansys/mapdl/core/_commands/post26_/operations.py index bdb5daee3a..7e72716c0e 100644 --- a/src/ansys/mapdl/core/_commands/post26_/operations.py +++ b/src/ansys/mapdl/core/_commands/post26_/operations.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post26_/setup.py b/src/ansys/mapdl/core/_commands/post26_/setup.py index eb3ac34de6..845f66fda2 100644 --- a/src/ansys/mapdl/core/_commands/post26_/setup.py +++ b/src/ansys/mapdl/core/_commands/post26_/setup.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post26_/special.py b/src/ansys/mapdl/core/_commands/post26_/special.py index 0dd8ed8d35..695d44e3ac 100644 --- a/src/ansys/mapdl/core/_commands/post26_/special.py +++ b/src/ansys/mapdl/core/_commands/post26_/special.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/post26_/status.py b/src/ansys/mapdl/core/_commands/post26_/status.py index 0cad542a57..fa3b84fc5d 100644 --- a/src/ansys/mapdl/core/_commands/post26_/status.py +++ b/src/ansys/mapdl/core/_commands/post26_/status.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/__init__.py b/src/ansys/mapdl/core/_commands/preproc/__init__.py index fef3ab8ae8..82c6e53ae7 100644 --- a/src/ansys/mapdl/core/_commands/preproc/__init__.py +++ b/src/ansys/mapdl/core/_commands/preproc/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/areas.py b/src/ansys/mapdl/core/_commands/preproc/areas.py index 1fedf0d65d..3cb6b2e483 100644 --- a/src/ansys/mapdl/core/_commands/preproc/areas.py +++ b/src/ansys/mapdl/core/_commands/preproc/areas.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/artificially_matched_layers.py b/src/ansys/mapdl/core/_commands/preproc/artificially_matched_layers.py index 0b3e00a8f5..af1fee0f82 100644 --- a/src/ansys/mapdl/core/_commands/preproc/artificially_matched_layers.py +++ b/src/ansys/mapdl/core/_commands/preproc/artificially_matched_layers.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/booleans.py b/src/ansys/mapdl/core/_commands/preproc/booleans.py index 0d161beab7..62adc3ec3f 100644 --- a/src/ansys/mapdl/core/_commands/preproc/booleans.py +++ b/src/ansys/mapdl/core/_commands/preproc/booleans.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/constraint_equations.py b/src/ansys/mapdl/core/_commands/preproc/constraint_equations.py index 598d7c2d56..cccd16e21c 100644 --- a/src/ansys/mapdl/core/_commands/preproc/constraint_equations.py +++ b/src/ansys/mapdl/core/_commands/preproc/constraint_equations.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/coupled_dof.py b/src/ansys/mapdl/core/_commands/preproc/coupled_dof.py index ad2ef604dc..4a3f8150d6 100644 --- a/src/ansys/mapdl/core/_commands/preproc/coupled_dof.py +++ b/src/ansys/mapdl/core/_commands/preproc/coupled_dof.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/database.py b/src/ansys/mapdl/core/_commands/preproc/database.py index 416e6b4465..3e5ee5d1b2 100644 --- a/src/ansys/mapdl/core/_commands/preproc/database.py +++ b/src/ansys/mapdl/core/_commands/preproc/database.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/digitizing.py b/src/ansys/mapdl/core/_commands/preproc/digitizing.py index a2b5d76066..822cea4450 100644 --- a/src/ansys/mapdl/core/_commands/preproc/digitizing.py +++ b/src/ansys/mapdl/core/_commands/preproc/digitizing.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/element_type.py b/src/ansys/mapdl/core/_commands/preproc/element_type.py index bfe21c2d46..d4f3d2ebc4 100644 --- a/src/ansys/mapdl/core/_commands/preproc/element_type.py +++ b/src/ansys/mapdl/core/_commands/preproc/element_type.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/elements.py b/src/ansys/mapdl/core/_commands/preproc/elements.py index 56c8742608..034dcb4002 100644 --- a/src/ansys/mapdl/core/_commands/preproc/elements.py +++ b/src/ansys/mapdl/core/_commands/preproc/elements.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/explicit_dynamics.py b/src/ansys/mapdl/core/_commands/preproc/explicit_dynamics.py index 41206e0ed3..901962d3a3 100644 --- a/src/ansys/mapdl/core/_commands/preproc/explicit_dynamics.py +++ b/src/ansys/mapdl/core/_commands/preproc/explicit_dynamics.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/hard_points.py b/src/ansys/mapdl/core/_commands/preproc/hard_points.py index 1c15c77921..c5877aca89 100644 --- a/src/ansys/mapdl/core/_commands/preproc/hard_points.py +++ b/src/ansys/mapdl/core/_commands/preproc/hard_points.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/keypoints.py b/src/ansys/mapdl/core/_commands/preproc/keypoints.py index 37ce6b2a7a..5237d8377a 100644 --- a/src/ansys/mapdl/core/_commands/preproc/keypoints.py +++ b/src/ansys/mapdl/core/_commands/preproc/keypoints.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/lines.py b/src/ansys/mapdl/core/_commands/preproc/lines.py index ce8084ecaf..52fa9771af 100644 --- a/src/ansys/mapdl/core/_commands/preproc/lines.py +++ b/src/ansys/mapdl/core/_commands/preproc/lines.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/material_data_tables.py b/src/ansys/mapdl/core/_commands/preproc/material_data_tables.py index a0c1c4dc33..15eef22159 100644 --- a/src/ansys/mapdl/core/_commands/preproc/material_data_tables.py +++ b/src/ansys/mapdl/core/_commands/preproc/material_data_tables.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/materials.py b/src/ansys/mapdl/core/_commands/preproc/materials.py index 1bc5c548ff..942b44407e 100644 --- a/src/ansys/mapdl/core/_commands/preproc/materials.py +++ b/src/ansys/mapdl/core/_commands/preproc/materials.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/meshing.py b/src/ansys/mapdl/core/_commands/preproc/meshing.py index 20a7dbe19b..01fe838e09 100644 --- a/src/ansys/mapdl/core/_commands/preproc/meshing.py +++ b/src/ansys/mapdl/core/_commands/preproc/meshing.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/morphing.py b/src/ansys/mapdl/core/_commands/preproc/morphing.py index f8ecc35c85..895174a398 100644 --- a/src/ansys/mapdl/core/_commands/preproc/morphing.py +++ b/src/ansys/mapdl/core/_commands/preproc/morphing.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/nodes.py b/src/ansys/mapdl/core/_commands/preproc/nodes.py index 48f2a43f78..72f0862ab2 100644 --- a/src/ansys/mapdl/core/_commands/preproc/nodes.py +++ b/src/ansys/mapdl/core/_commands/preproc/nodes.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/primitives.py b/src/ansys/mapdl/core/_commands/preproc/primitives.py index a4cd6cb2ae..5a41f1e46c 100644 --- a/src/ansys/mapdl/core/_commands/preproc/primitives.py +++ b/src/ansys/mapdl/core/_commands/preproc/primitives.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/real_constants.py b/src/ansys/mapdl/core/_commands/preproc/real_constants.py index 208be4b966..35a0b6bff9 100644 --- a/src/ansys/mapdl/core/_commands/preproc/real_constants.py +++ b/src/ansys/mapdl/core/_commands/preproc/real_constants.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/sections.py b/src/ansys/mapdl/core/_commands/preproc/sections.py index d95d7d1886..2f71902f06 100644 --- a/src/ansys/mapdl/core/_commands/preproc/sections.py +++ b/src/ansys/mapdl/core/_commands/preproc/sections.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/special_purpose.py b/src/ansys/mapdl/core/_commands/preproc/special_purpose.py index 6f36494d18..18bf3da44c 100644 --- a/src/ansys/mapdl/core/_commands/preproc/special_purpose.py +++ b/src/ansys/mapdl/core/_commands/preproc/special_purpose.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/status.py b/src/ansys/mapdl/core/_commands/preproc/status.py index f0beda5f80..084b2e1047 100644 --- a/src/ansys/mapdl/core/_commands/preproc/status.py +++ b/src/ansys/mapdl/core/_commands/preproc/status.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/superelements.py b/src/ansys/mapdl/core/_commands/preproc/superelements.py index e84bee2fa4..9a329e729d 100644 --- a/src/ansys/mapdl/core/_commands/preproc/superelements.py +++ b/src/ansys/mapdl/core/_commands/preproc/superelements.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/preproc/volumes.py b/src/ansys/mapdl/core/_commands/preproc/volumes.py index 5b19646c70..d725520d3d 100644 --- a/src/ansys/mapdl/core/_commands/preproc/volumes.py +++ b/src/ansys/mapdl/core/_commands/preproc/volumes.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/reduced/__init__.py b/src/ansys/mapdl/core/_commands/reduced/__init__.py index 58ba254361..21ba00eea9 100644 --- a/src/ansys/mapdl/core/_commands/reduced/__init__.py +++ b/src/ansys/mapdl/core/_commands/reduced/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/reduced/generation.py b/src/ansys/mapdl/core/_commands/reduced/generation.py index f712df48a2..699b546904 100644 --- a/src/ansys/mapdl/core/_commands/reduced/generation.py +++ b/src/ansys/mapdl/core/_commands/reduced/generation.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/reduced/preparation.py b/src/ansys/mapdl/core/_commands/reduced/preparation.py index f346efbf99..74e9c0f6c2 100644 --- a/src/ansys/mapdl/core/_commands/reduced/preparation.py +++ b/src/ansys/mapdl/core/_commands/reduced/preparation.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/reduced/setup.py b/src/ansys/mapdl/core/_commands/reduced/setup.py index 4101a0a21a..600617e9f8 100644 --- a/src/ansys/mapdl/core/_commands/reduced/setup.py +++ b/src/ansys/mapdl/core/_commands/reduced/setup.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/reduced/use_pass.py b/src/ansys/mapdl/core/_commands/reduced/use_pass.py index 32fad9af8f..0589ea1c7a 100644 --- a/src/ansys/mapdl/core/_commands/reduced/use_pass.py +++ b/src/ansys/mapdl/core/_commands/reduced/use_pass.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/session/__init__.py b/src/ansys/mapdl/core/_commands/session/__init__.py index ec94194b59..eff5c0cf7f 100644 --- a/src/ansys/mapdl/core/_commands/session/__init__.py +++ b/src/ansys/mapdl/core/_commands/session/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/session/files.py b/src/ansys/mapdl/core/_commands/session/files.py index 8fb0bfef7a..438e3f4cc2 100644 --- a/src/ansys/mapdl/core/_commands/session/files.py +++ b/src/ansys/mapdl/core/_commands/session/files.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/session/list_controls.py b/src/ansys/mapdl/core/_commands/session/list_controls.py index 6bcf014900..ef12613c01 100644 --- a/src/ansys/mapdl/core/_commands/session/list_controls.py +++ b/src/ansys/mapdl/core/_commands/session/list_controls.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/session/processor_entry.py b/src/ansys/mapdl/core/_commands/session/processor_entry.py index 6808731f03..4a86f311e8 100644 --- a/src/ansys/mapdl/core/_commands/session/processor_entry.py +++ b/src/ansys/mapdl/core/_commands/session/processor_entry.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/session/run_controls.py b/src/ansys/mapdl/core/_commands/session/run_controls.py index 29fea7ec2d..757e2b8707 100644 --- a/src/ansys/mapdl/core/_commands/session/run_controls.py +++ b/src/ansys/mapdl/core/_commands/session/run_controls.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/__init__.py b/src/ansys/mapdl/core/_commands/solution/__init__.py index 5e380d5786..38fa021bed 100644 --- a/src/ansys/mapdl/core/_commands/solution/__init__.py +++ b/src/ansys/mapdl/core/_commands/solution/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/all_others.py b/src/ansys/mapdl/core/_commands/solution/all_others.py index aa3054dc1b..b55dfdc012 100644 --- a/src/ansys/mapdl/core/_commands/solution/all_others.py +++ b/src/ansys/mapdl/core/_commands/solution/all_others.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/analysis_options.py b/src/ansys/mapdl/core/_commands/solution/analysis_options.py index e5b87da1e8..7c929dd9b5 100644 --- a/src/ansys/mapdl/core/_commands/solution/analysis_options.py +++ b/src/ansys/mapdl/core/_commands/solution/analysis_options.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/birth_and_death.py b/src/ansys/mapdl/core/_commands/solution/birth_and_death.py index 4ec4724e92..bd311f1a9f 100644 --- a/src/ansys/mapdl/core/_commands/solution/birth_and_death.py +++ b/src/ansys/mapdl/core/_commands/solution/birth_and_death.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/dynamic_options.py b/src/ansys/mapdl/core/_commands/solution/dynamic_options.py index 9be51e5846..c44501d652 100644 --- a/src/ansys/mapdl/core/_commands/solution/dynamic_options.py +++ b/src/ansys/mapdl/core/_commands/solution/dynamic_options.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/fe_body_loads.py b/src/ansys/mapdl/core/_commands/solution/fe_body_loads.py index 72eed11123..a5db23013f 100644 --- a/src/ansys/mapdl/core/_commands/solution/fe_body_loads.py +++ b/src/ansys/mapdl/core/_commands/solution/fe_body_loads.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/fe_constraints.py b/src/ansys/mapdl/core/_commands/solution/fe_constraints.py index 7b5bcf7c06..03c3a1fc41 100644 --- a/src/ansys/mapdl/core/_commands/solution/fe_constraints.py +++ b/src/ansys/mapdl/core/_commands/solution/fe_constraints.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/fe_forces.py b/src/ansys/mapdl/core/_commands/solution/fe_forces.py index 68584dfcad..1ed9f362b2 100644 --- a/src/ansys/mapdl/core/_commands/solution/fe_forces.py +++ b/src/ansys/mapdl/core/_commands/solution/fe_forces.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/fe_surface_loads.py b/src/ansys/mapdl/core/_commands/solution/fe_surface_loads.py index 1df5d96e69..97be8b4776 100644 --- a/src/ansys/mapdl/core/_commands/solution/fe_surface_loads.py +++ b/src/ansys/mapdl/core/_commands/solution/fe_surface_loads.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/gap_conditions.py b/src/ansys/mapdl/core/_commands/solution/gap_conditions.py index c73e56070a..0cfe0a5bb3 100644 --- a/src/ansys/mapdl/core/_commands/solution/gap_conditions.py +++ b/src/ansys/mapdl/core/_commands/solution/gap_conditions.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/inertia.py b/src/ansys/mapdl/core/_commands/solution/inertia.py index a456de49ea..77fed6f5e7 100644 --- a/src/ansys/mapdl/core/_commands/solution/inertia.py +++ b/src/ansys/mapdl/core/_commands/solution/inertia.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/load_step_operations.py b/src/ansys/mapdl/core/_commands/solution/load_step_operations.py index 28cf878d34..c1062969dc 100644 --- a/src/ansys/mapdl/core/_commands/solution/load_step_operations.py +++ b/src/ansys/mapdl/core/_commands/solution/load_step_operations.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/load_step_options.py b/src/ansys/mapdl/core/_commands/solution/load_step_options.py index d3b92330cd..0f12b9aefe 100644 --- a/src/ansys/mapdl/core/_commands/solution/load_step_options.py +++ b/src/ansys/mapdl/core/_commands/solution/load_step_options.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/master_dof.py b/src/ansys/mapdl/core/_commands/solution/master_dof.py index 3e308853fd..451bad8539 100644 --- a/src/ansys/mapdl/core/_commands/solution/master_dof.py +++ b/src/ansys/mapdl/core/_commands/solution/master_dof.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/miscellaneous_loads.py b/src/ansys/mapdl/core/_commands/solution/miscellaneous_loads.py index 4d52bdbfd3..a2acb01c8f 100644 --- a/src/ansys/mapdl/core/_commands/solution/miscellaneous_loads.py +++ b/src/ansys/mapdl/core/_commands/solution/miscellaneous_loads.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_convergence_controls.py b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_convergence_controls.py index fb0b66cb4d..263c209d93 100644 --- a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_convergence_controls.py +++ b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_convergence_controls.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_definition_commands.py b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_definition_commands.py index a58b531e28..7c984d82a7 100644 --- a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_definition_commands.py +++ b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_definition_commands.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_global_controls.py b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_global_controls.py index a47bd97577..23f2c06f0e 100644 --- a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_global_controls.py +++ b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_global_controls.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_interface_mapping.py b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_interface_mapping.py index 3a84e76db1..3b13664bb1 100644 --- a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_interface_mapping.py +++ b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_interface_mapping.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_load_transfer.py b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_load_transfer.py index e12f27e5fe..3f9ce0dc3b 100644 --- a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_load_transfer.py +++ b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_load_transfer.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_time_controls.py b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_time_controls.py index 6a495523b3..a97645aa2c 100644 --- a/src/ansys/mapdl/core/_commands/solution/multi_field_solver_time_controls.py +++ b/src/ansys/mapdl/core/_commands/solution/multi_field_solver_time_controls.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/nonlinear_options.py b/src/ansys/mapdl/core/_commands/solution/nonlinear_options.py index aea81e12b8..d990be3a8f 100644 --- a/src/ansys/mapdl/core/_commands/solution/nonlinear_options.py +++ b/src/ansys/mapdl/core/_commands/solution/nonlinear_options.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/ocean.py b/src/ansys/mapdl/core/_commands/solution/ocean.py index af8669f56c..ac609817c9 100644 --- a/src/ansys/mapdl/core/_commands/solution/ocean.py +++ b/src/ansys/mapdl/core/_commands/solution/ocean.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/radiosity.py b/src/ansys/mapdl/core/_commands/solution/radiosity.py index 67063800b4..8bab8c3e4b 100644 --- a/src/ansys/mapdl/core/_commands/solution/radiosity.py +++ b/src/ansys/mapdl/core/_commands/solution/radiosity.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/rezoning.py b/src/ansys/mapdl/core/_commands/solution/rezoning.py index a6b9ff95ef..d47d47db9a 100644 --- a/src/ansys/mapdl/core/_commands/solution/rezoning.py +++ b/src/ansys/mapdl/core/_commands/solution/rezoning.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/solid_body_loads.py b/src/ansys/mapdl/core/_commands/solution/solid_body_loads.py index 1a66374b53..53e690e6dd 100644 --- a/src/ansys/mapdl/core/_commands/solution/solid_body_loads.py +++ b/src/ansys/mapdl/core/_commands/solution/solid_body_loads.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/solid_constraints.py b/src/ansys/mapdl/core/_commands/solution/solid_constraints.py index 1198c6a44d..19300657ce 100644 --- a/src/ansys/mapdl/core/_commands/solution/solid_constraints.py +++ b/src/ansys/mapdl/core/_commands/solution/solid_constraints.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/solid_forces.py b/src/ansys/mapdl/core/_commands/solution/solid_forces.py index 811e2fd5c1..4ed81c47bd 100644 --- a/src/ansys/mapdl/core/_commands/solution/solid_forces.py +++ b/src/ansys/mapdl/core/_commands/solution/solid_forces.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/solid_surface_loads.py b/src/ansys/mapdl/core/_commands/solution/solid_surface_loads.py index 948862075a..02ed56ce75 100644 --- a/src/ansys/mapdl/core/_commands/solution/solid_surface_loads.py +++ b/src/ansys/mapdl/core/_commands/solution/solid_surface_loads.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/solution_status.py b/src/ansys/mapdl/core/_commands/solution/solution_status.py index 85a9c5ccd7..9dc68213b4 100644 --- a/src/ansys/mapdl/core/_commands/solution/solution_status.py +++ b/src/ansys/mapdl/core/_commands/solution/solution_status.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/spectrum_options.py b/src/ansys/mapdl/core/_commands/solution/spectrum_options.py index 5dc638af54..596a441774 100644 --- a/src/ansys/mapdl/core/_commands/solution/spectrum_options.py +++ b/src/ansys/mapdl/core/_commands/solution/spectrum_options.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_commands/solution/twod_to_3d_analysis.py b/src/ansys/mapdl/core/_commands/solution/twod_to_3d_analysis.py index fcdc1b47fc..e354bff531 100644 --- a/src/ansys/mapdl/core/_commands/solution/twod_to_3d_analysis.py +++ b/src/ansys/mapdl/core/_commands/solution/twod_to_3d_analysis.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/_version.py b/src/ansys/mapdl/core/_version.py index 96081b15d2..5ea719ba27 100644 --- a/src/ansys/mapdl/core/_version.py +++ b/src/ansys/mapdl/core/_version.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/cli/__init__.py b/src/ansys/mapdl/core/cli/__init__.py index a3cedac94a..35aa06665f 100644 --- a/src/ansys/mapdl/core/cli/__init__.py +++ b/src/ansys/mapdl/core/cli/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/cli/convert.py b/src/ansys/mapdl/core/cli/convert.py index c618ee14ef..8fc9854d3a 100644 --- a/src/ansys/mapdl/core/cli/convert.py +++ b/src/ansys/mapdl/core/cli/convert.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/cli/list_instances.py b/src/ansys/mapdl/core/cli/list_instances.py index 36d6d5b9df..55ca8e72f8 100644 --- a/src/ansys/mapdl/core/cli/list_instances.py +++ b/src/ansys/mapdl/core/cli/list_instances.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/cli/start.py b/src/ansys/mapdl/core/cli/start.py index 7c8332a96c..5d3c1abfb1 100644 --- a/src/ansys/mapdl/core/cli/start.py +++ b/src/ansys/mapdl/core/cli/start.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/cli/stop.py b/src/ansys/mapdl/core/cli/stop.py index 2e16a7404b..051a0b8e96 100644 --- a/src/ansys/mapdl/core/cli/stop.py +++ b/src/ansys/mapdl/core/cli/stop.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/commands.py b/src/ansys/mapdl/core/commands.py index a09e93a0d5..f478918e76 100644 --- a/src/ansys/mapdl/core/commands.py +++ b/src/ansys/mapdl/core/commands.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/common_grpc.py b/src/ansys/mapdl/core/common_grpc.py index ab5be839ce..edcb0698f1 100644 --- a/src/ansys/mapdl/core/common_grpc.py +++ b/src/ansys/mapdl/core/common_grpc.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/component.py b/src/ansys/mapdl/core/component.py index 21bc4765c0..2350eebe76 100644 --- a/src/ansys/mapdl/core/component.py +++ b/src/ansys/mapdl/core/component.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/convert.py b/src/ansys/mapdl/core/convert.py index cbce45f5d4..4df406395e 100644 --- a/src/ansys/mapdl/core/convert.py +++ b/src/ansys/mapdl/core/convert.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/database/__init__.py b/src/ansys/mapdl/core/database/__init__.py index 15ab923f7a..a842823bc6 100644 --- a/src/ansys/mapdl/core/database/__init__.py +++ b/src/ansys/mapdl/core/database/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/database/database.py b/src/ansys/mapdl/core/database/database.py index ee8aa44dcb..3e395a6297 100644 --- a/src/ansys/mapdl/core/database/database.py +++ b/src/ansys/mapdl/core/database/database.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/database/elems.py b/src/ansys/mapdl/core/database/elems.py index 2e96528d9d..7680df8e98 100644 --- a/src/ansys/mapdl/core/database/elems.py +++ b/src/ansys/mapdl/core/database/elems.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/database/nodes.py b/src/ansys/mapdl/core/database/nodes.py index c98c469b01..938a894558 100644 --- a/src/ansys/mapdl/core/database/nodes.py +++ b/src/ansys/mapdl/core/database/nodes.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/errors.py b/src/ansys/mapdl/core/errors.py index ebbffcfa53..b4f1fcb8b2 100644 --- a/src/ansys/mapdl/core/errors.py +++ b/src/ansys/mapdl/core/errors.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/examples/__init__.py b/src/ansys/mapdl/core/examples/__init__.py index c5af09b6b6..dc202a9874 100644 --- a/src/ansys/mapdl/core/examples/__init__.py +++ b/src/ansys/mapdl/core/examples/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/examples/downloads.py b/src/ansys/mapdl/core/examples/downloads.py index 67c793e091..6112d97f1c 100644 --- a/src/ansys/mapdl/core/examples/downloads.py +++ b/src/ansys/mapdl/core/examples/downloads.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/examples/examples.py b/src/ansys/mapdl/core/examples/examples.py index bbb8a2715e..339f4d1bde 100644 --- a/src/ansys/mapdl/core/examples/examples.py +++ b/src/ansys/mapdl/core/examples/examples.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/examples/verif_files.py b/src/ansys/mapdl/core/examples/verif_files.py index 7a6ccb2ccd..b684c59c74 100755 --- a/src/ansys/mapdl/core/examples/verif_files.py +++ b/src/ansys/mapdl/core/examples/verif_files.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/helpers.py b/src/ansys/mapdl/core/helpers.py index 0f70d2096d..a42dc70390 100644 --- a/src/ansys/mapdl/core/helpers.py +++ b/src/ansys/mapdl/core/helpers.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/information.py b/src/ansys/mapdl/core/information.py index 3239b657a7..c6120bfacd 100644 --- a/src/ansys/mapdl/core/information.py +++ b/src/ansys/mapdl/core/information.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/__init__.py b/src/ansys/mapdl/core/inline_functions/__init__.py index 466797780e..3433c2900f 100644 --- a/src/ansys/mapdl/core/inline_functions/__init__.py +++ b/src/ansys/mapdl/core/inline_functions/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/component_queries.py b/src/ansys/mapdl/core/inline_functions/component_queries.py index 5cb10f5dac..1091e8f47f 100644 --- a/src/ansys/mapdl/core/inline_functions/component_queries.py +++ b/src/ansys/mapdl/core/inline_functions/component_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/connectivity_queries.py b/src/ansys/mapdl/core/inline_functions/connectivity_queries.py index a39fc9d432..dc23f9d10b 100644 --- a/src/ansys/mapdl/core/inline_functions/connectivity_queries.py +++ b/src/ansys/mapdl/core/inline_functions/connectivity_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/core.py b/src/ansys/mapdl/core/inline_functions/core.py index 65d7d59d9e..69c3b55c55 100644 --- a/src/ansys/mapdl/core/inline_functions/core.py +++ b/src/ansys/mapdl/core/inline_functions/core.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/geometry_queries.py b/src/ansys/mapdl/core/inline_functions/geometry_queries.py index a9c3d14a4d..043006f0f3 100644 --- a/src/ansys/mapdl/core/inline_functions/geometry_queries.py +++ b/src/ansys/mapdl/core/inline_functions/geometry_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/inline_functions.py b/src/ansys/mapdl/core/inline_functions/inline_functions.py index 724409ebed..05eb2aca91 100644 --- a/src/ansys/mapdl/core/inline_functions/inline_functions.py +++ b/src/ansys/mapdl/core/inline_functions/inline_functions.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/line_queries.py b/src/ansys/mapdl/core/inline_functions/line_queries.py index 2b4b9f87ca..6063ffc3a4 100644 --- a/src/ansys/mapdl/core/inline_functions/line_queries.py +++ b/src/ansys/mapdl/core/inline_functions/line_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/nearest_queries.py b/src/ansys/mapdl/core/inline_functions/nearest_queries.py index 9fbb41b637..5d01d9fea3 100644 --- a/src/ansys/mapdl/core/inline_functions/nearest_queries.py +++ b/src/ansys/mapdl/core/inline_functions/nearest_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/normals_queries.py b/src/ansys/mapdl/core/inline_functions/normals_queries.py index 151733f77b..76d7ae67a3 100644 --- a/src/ansys/mapdl/core/inline_functions/normals_queries.py +++ b/src/ansys/mapdl/core/inline_functions/normals_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/scalar_queries.py b/src/ansys/mapdl/core/inline_functions/scalar_queries.py index 038ea4fb80..07bf542808 100644 --- a/src/ansys/mapdl/core/inline_functions/scalar_queries.py +++ b/src/ansys/mapdl/core/inline_functions/scalar_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/inline_functions/selection_queries.py b/src/ansys/mapdl/core/inline_functions/selection_queries.py index 10b5b1b30e..bba1882fd4 100644 --- a/src/ansys/mapdl/core/inline_functions/selection_queries.py +++ b/src/ansys/mapdl/core/inline_functions/selection_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/jupyter.py b/src/ansys/mapdl/core/jupyter.py index 754ac92280..7cfe39b41f 100644 --- a/src/ansys/mapdl/core/jupyter.py +++ b/src/ansys/mapdl/core/jupyter.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/krylov.py b/src/ansys/mapdl/core/krylov.py index 9f2ebb6333..7c8a6cd807 100644 --- a/src/ansys/mapdl/core/krylov.py +++ b/src/ansys/mapdl/core/krylov.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/launcher.py b/src/ansys/mapdl/core/launcher.py index 650ba4a252..bd365fd9d9 100644 --- a/src/ansys/mapdl/core/launcher.py +++ b/src/ansys/mapdl/core/launcher.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/licensing.py b/src/ansys/mapdl/core/licensing.py index 6fd4d8beea..a459096cd4 100644 --- a/src/ansys/mapdl/core/licensing.py +++ b/src/ansys/mapdl/core/licensing.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/logging.py b/src/ansys/mapdl/core/logging.py index 9c5b8f62f2..d695bcd36d 100644 --- a/src/ansys/mapdl/core/logging.py +++ b/src/ansys/mapdl/core/logging.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mapdl.py b/src/ansys/mapdl/core/mapdl.py index 5f0b58005e..57b0684f8e 100644 --- a/src/ansys/mapdl/core/mapdl.py +++ b/src/ansys/mapdl/core/mapdl.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mapdl_console.py b/src/ansys/mapdl/core/mapdl_console.py index d3e1c4f678..cc4ebf8c3c 100644 --- a/src/ansys/mapdl/core/mapdl_console.py +++ b/src/ansys/mapdl/core/mapdl_console.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mapdl_core.py b/src/ansys/mapdl/core/mapdl_core.py index f5cf599b14..e0bcc94240 100644 --- a/src/ansys/mapdl/core/mapdl_core.py +++ b/src/ansys/mapdl/core/mapdl_core.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mapdl_extended.py b/src/ansys/mapdl/core/mapdl_extended.py index 94f2808fd4..8a44fcfea0 100644 --- a/src/ansys/mapdl/core/mapdl_extended.py +++ b/src/ansys/mapdl/core/mapdl_extended.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mapdl_geometry.py b/src/ansys/mapdl/core/mapdl_geometry.py index fca96f5861..59b727a911 100644 --- a/src/ansys/mapdl/core/mapdl_geometry.py +++ b/src/ansys/mapdl/core/mapdl_geometry.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mapdl_grpc.py b/src/ansys/mapdl/core/mapdl_grpc.py index a15982ce12..070f61989d 100644 --- a/src/ansys/mapdl/core/mapdl_grpc.py +++ b/src/ansys/mapdl/core/mapdl_grpc.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mapdl_inprocess.py b/src/ansys/mapdl/core/mapdl_inprocess.py index f9f500ce25..ca486cf9f4 100644 --- a/src/ansys/mapdl/core/mapdl_inprocess.py +++ b/src/ansys/mapdl/core/mapdl_inprocess.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mapdl_types.py b/src/ansys/mapdl/core/mapdl_types.py index 22afd033fc..09a54db7ed 100644 --- a/src/ansys/mapdl/core/mapdl_types.py +++ b/src/ansys/mapdl/core/mapdl_types.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mesh/__init__.py b/src/ansys/mapdl/core/mesh/__init__.py index aa3054dc1b..b55dfdc012 100644 --- a/src/ansys/mapdl/core/mesh/__init__.py +++ b/src/ansys/mapdl/core/mesh/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mesh/mesh.py b/src/ansys/mapdl/core/mesh/mesh.py index 6853d237d6..0c989bbe6c 100644 --- a/src/ansys/mapdl/core/mesh/mesh.py +++ b/src/ansys/mapdl/core/mesh/mesh.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/mesh_grpc.py b/src/ansys/mapdl/core/mesh_grpc.py index 93e98654ad..dc24f30639 100644 --- a/src/ansys/mapdl/core/mesh_grpc.py +++ b/src/ansys/mapdl/core/mesh_grpc.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/misc.py b/src/ansys/mapdl/core/misc.py index 1c14e05610..610f6821ff 100644 --- a/src/ansys/mapdl/core/misc.py +++ b/src/ansys/mapdl/core/misc.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/parameters.py b/src/ansys/mapdl/core/parameters.py index 32c96bbef8..cfaef83c76 100644 --- a/src/ansys/mapdl/core/parameters.py +++ b/src/ansys/mapdl/core/parameters.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/plotting/__init__.py b/src/ansys/mapdl/core/plotting/__init__.py index 88dcdee1f1..a3f379af20 100644 --- a/src/ansys/mapdl/core/plotting/__init__.py +++ b/src/ansys/mapdl/core/plotting/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/plotting/consts.py b/src/ansys/mapdl/core/plotting/consts.py index d091473eaf..8d1ee9d427 100644 --- a/src/ansys/mapdl/core/plotting/consts.py +++ b/src/ansys/mapdl/core/plotting/consts.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/plotting/plotting_defaults.py b/src/ansys/mapdl/core/plotting/plotting_defaults.py index a734355e36..801ff6fca4 100644 --- a/src/ansys/mapdl/core/plotting/plotting_defaults.py +++ b/src/ansys/mapdl/core/plotting/plotting_defaults.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/plotting/theme.py b/src/ansys/mapdl/core/plotting/theme.py index 1b8ed546f6..9dab277cc1 100644 --- a/src/ansys/mapdl/core/plotting/theme.py +++ b/src/ansys/mapdl/core/plotting/theme.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/plotting/visualizer.py b/src/ansys/mapdl/core/plotting/visualizer.py index 6f36a527bd..f4df50e8d8 100644 --- a/src/ansys/mapdl/core/plotting/visualizer.py +++ b/src/ansys/mapdl/core/plotting/visualizer.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/pool.py b/src/ansys/mapdl/core/pool.py index 40e22ae2b1..5a53d5f9f8 100755 --- a/src/ansys/mapdl/core/pool.py +++ b/src/ansys/mapdl/core/pool.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/post.py b/src/ansys/mapdl/core/post.py index 3beca9c2d6..18ebc102c4 100644 --- a/src/ansys/mapdl/core/post.py +++ b/src/ansys/mapdl/core/post.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/report.py b/src/ansys/mapdl/core/report.py index bfa9382185..0cc3a6d3dc 100644 --- a/src/ansys/mapdl/core/report.py +++ b/src/ansys/mapdl/core/report.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/solution.py b/src/ansys/mapdl/core/solution.py index 09d6478e44..4b7534827f 100644 --- a/src/ansys/mapdl/core/solution.py +++ b/src/ansys/mapdl/core/solution.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/src/ansys/mapdl/core/xpl.py b/src/ansys/mapdl/core/xpl.py index 76d6086039..a7e0542bf2 100644 --- a/src/ansys/mapdl/core/xpl.py +++ b/src/ansys/mapdl/core/xpl.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/common.py b/tests/common.py index 0ff9a64632..5ad798693d 100644 --- a/tests/common.py +++ b/tests/common.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/conftest.py b/tests/conftest.py index 724929fa6d..04b136bc55 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_cli.py b/tests/test_cli.py index bd3c9377b0..a59b957038 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_commands.py b/tests/test_commands.py index ffc4047e98..1b154470c1 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_component.py b/tests/test_component.py index da5ebd91f6..aa790c4ff7 100644 --- a/tests/test_component.py +++ b/tests/test_component.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_console.py b/tests/test_console.py index a8f598b348..b65115ccea 100644 --- a/tests/test_console.py +++ b/tests/test_console.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_convert.py b/tests/test_convert.py index a1eae9a8f5..3f659315bc 100644 --- a/tests/test_convert.py +++ b/tests/test_convert.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_database.py b/tests/test_database.py index e051b72e20..d4bfe448b2 100644 --- a/tests/test_database.py +++ b/tests/test_database.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_dpf.py b/tests/test_dpf.py index fa8a1c5ce2..8fd93f5c36 100644 --- a/tests/test_dpf.py +++ b/tests/test_dpf.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_element.py b/tests/test_element.py index 9df3aa4d10..a078c76cd6 100644 --- a/tests/test_element.py +++ b/tests/test_element.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_errors.py b/tests/test_errors.py index 4cb65fdec5..cf862464cd 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_examples.py b/tests/test_examples.py index cbe980656e..3689deebc1 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_geometry.py b/tests/test_geometry.py index 9d69f86a90..59c6e5589f 100644 --- a/tests/test_geometry.py +++ b/tests/test_geometry.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_grpc.py b/tests/test_grpc.py index fd2454a4d0..0850df9f67 100644 --- a/tests/test_grpc.py +++ b/tests/test_grpc.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_importing_geometries.py b/tests/test_importing_geometries.py index adcd622686..f142482685 100644 --- a/tests/test_importing_geometries.py +++ b/tests/test_importing_geometries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_information.py b/tests/test_information.py index 8d2f5cfebf..d09a67f420 100644 --- a/tests/test_information.py +++ b/tests/test_information.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_inline_functions/test_component_queries.py b/tests/test_inline_functions/test_component_queries.py index 212e835049..5749fced27 100644 --- a/tests/test_inline_functions/test_component_queries.py +++ b/tests/test_inline_functions/test_component_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_inline_functions/test_connectivity_queries.py b/tests/test_inline_functions/test_connectivity_queries.py index 3f638e08ef..127a9c7d38 100644 --- a/tests/test_inline_functions/test_connectivity_queries.py +++ b/tests/test_inline_functions/test_connectivity_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_inline_functions/test_field_component_queries.py b/tests/test_inline_functions/test_field_component_queries.py index f67606d5bf..5b4dd3fe52 100644 --- a/tests/test_inline_functions/test_field_component_queries.py +++ b/tests/test_inline_functions/test_field_component_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_inline_functions/test_geometry_queries.py b/tests/test_inline_functions/test_geometry_queries.py index a6cdd4a56e..6a4e823bdd 100644 --- a/tests/test_inline_functions/test_geometry_queries.py +++ b/tests/test_inline_functions/test_geometry_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_inline_functions/test_line_component_queries.py b/tests/test_inline_functions/test_line_component_queries.py index f3719f23e9..c8e4186a87 100644 --- a/tests/test_inline_functions/test_line_component_queries.py +++ b/tests/test_inline_functions/test_line_component_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_inline_functions/test_nearest_queries.py b/tests/test_inline_functions/test_nearest_queries.py index 4b0b69fec0..cc4b0720a6 100644 --- a/tests/test_inline_functions/test_nearest_queries.py +++ b/tests/test_inline_functions/test_nearest_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_inline_functions/test_normals_queries.py b/tests/test_inline_functions/test_normals_queries.py index 3cf7a453d8..dae67e190d 100644 --- a/tests/test_inline_functions/test_normals_queries.py +++ b/tests/test_inline_functions/test_normals_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_inline_functions/test_query.py b/tests/test_inline_functions/test_query.py index 442e9ecf18..fe3b3c0d8b 100644 --- a/tests/test_inline_functions/test_query.py +++ b/tests/test_inline_functions/test_query.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_inline_functions/test_selection_queries.py b/tests/test_inline_functions/test_selection_queries.py index 7a754fc666..23e4a2b92a 100644 --- a/tests/test_inline_functions/test_selection_queries.py +++ b/tests/test_inline_functions/test_selection_queries.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_krylov.py b/tests/test_krylov.py index cab575a733..9a3c83c456 100644 --- a/tests/test_krylov.py +++ b/tests/test_krylov.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_launcher.py b/tests/test_launcher.py index 92952a42cc..0f5b736505 100644 --- a/tests/test_launcher.py +++ b/tests/test_launcher.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_launcher_remote.py b/tests/test_launcher_remote.py index f653f78fb4..fa5e937085 100644 --- a/tests/test_launcher_remote.py +++ b/tests/test_launcher_remote.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_licensing.py b/tests/test_licensing.py index b730ec6b2f..3bd1bbfd77 100644 --- a/tests/test_licensing.py +++ b/tests/test_licensing.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_logging.py b/tests/test_logging.py index 3c416706be..a28871b28e 100644 --- a/tests/test_logging.py +++ b/tests/test_logging.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_mapdl.py b/tests/test_mapdl.py index 2c2634a401..5fa8f5574f 100644 --- a/tests/test_mapdl.py +++ b/tests/test_mapdl.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_mesh_grpc.py b/tests/test_mesh_grpc.py index afbf339b4a..a0aaf421f7 100644 --- a/tests/test_mesh_grpc.py +++ b/tests/test_mesh_grpc.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_misc.py b/tests/test_misc.py index ed2be5c6bb..e891c2e94f 100644 --- a/tests/test_misc.py +++ b/tests/test_misc.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_parameters.py b/tests/test_parameters.py index fa6cda4de6..81e80be58d 100644 --- a/tests/test_parameters.py +++ b/tests/test_parameters.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_plotting.py b/tests/test_plotting.py index 742f819a8d..feea3c8bd2 100644 --- a/tests/test_plotting.py +++ b/tests/test_plotting.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_pool.py b/tests/test_pool.py index 61d920144c..5e73940a30 100644 --- a/tests/test_pool.py +++ b/tests/test_pool.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_post.py b/tests/test_post.py index 7eca8fcbba..42619bb036 100644 --- a/tests/test_post.py +++ b/tests/test_post.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_report.py b/tests/test_report.py index 4857dbf345..c32bb7a37f 100644 --- a/tests/test_report.py +++ b/tests/test_report.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_solution.py b/tests/test_solution.py index 985a0939fb..00a9e64a0e 100644 --- a/tests/test_solution.py +++ b/tests/test_solution.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_theme.py b/tests/test_theme.py index 9046634a04..25073c34ee 100644 --- a/tests/test_theme.py +++ b/tests/test_theme.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # diff --git a/tests/test_xpl.py b/tests/test_xpl.py index 6c85f14e53..979b58d594 100644 --- a/tests/test_xpl.py +++ b/tests/test_xpl.py @@ -1,4 +1,4 @@ -# Copyright (C) 2016 - 2024 ANSYS, Inc. and/or its affiliates. +# Copyright (C) 2016 - 2025 ANSYS, Inc. and/or its affiliates. # SPDX-License-Identifier: MIT # # From 78e1eebb71704905697f8f061a8b08b0902b94d4 Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Tue, 7 Jan 2025 10:54:09 +0000 Subject: [PATCH 4/7] chore: adding changelog file 3636.documentation.md [dependabot-skip] --- doc/changelog.d/3636.documentation.md | 1 + doc/changelog.d/3636.miscellaneous.md | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 doc/changelog.d/3636.documentation.md delete mode 100644 doc/changelog.d/3636.miscellaneous.md diff --git a/doc/changelog.d/3636.documentation.md b/doc/changelog.d/3636.documentation.md new file mode 100644 index 0000000000..5d0e245a47 --- /dev/null +++ b/doc/changelog.d/3636.documentation.md @@ -0,0 +1 @@ +feat: node/element selection commands returning selected ids \ No newline at end of file diff --git a/doc/changelog.d/3636.miscellaneous.md b/doc/changelog.d/3636.miscellaneous.md deleted file mode 100644 index a40c62584c..0000000000 --- a/doc/changelog.d/3636.miscellaneous.md +++ /dev/null @@ -1 +0,0 @@ -Feat: Node/Element selection commands returning selected IDs \ No newline at end of file From b8089ed72b23693a5ab601f57a3779eaa32e8ea7 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 10:54:43 +0000 Subject: [PATCH 5/7] ci: auto fixes from pre-commit.com hooks. for more information, see https://pre-commit.ci --- src/ansys/mapdl/core/mapdl_core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ansys/mapdl/core/mapdl_core.py b/src/ansys/mapdl/core/mapdl_core.py index e0bcc94240..6160ecae37 100644 --- a/src/ansys/mapdl/core/mapdl_core.py +++ b/src/ansys/mapdl/core/mapdl_core.py @@ -1317,9 +1317,9 @@ def wrap_xsel_function_output(method): return self.geometry.anum elif name == "VSEL": return self.geometry.vnum - elif name == 'ESLN': + elif name == "ESLN": return self.mesh.enum - elif name == 'NSLE': + elif name == "NSLE": return self.mesh.nnum else: return None From 904f81c1f06ba8c7529006d83c0a7d7857eacb22 Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Tue, 7 Jan 2025 12:36:08 +0000 Subject: [PATCH 6/7] chore: adding changelog file 3636.miscellaneous.md [dependabot-skip] --- doc/changelog.d/{3636.documentation.md => 3636.miscellaneous.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename doc/changelog.d/{3636.documentation.md => 3636.miscellaneous.md} (100%) diff --git a/doc/changelog.d/3636.documentation.md b/doc/changelog.d/3636.miscellaneous.md similarity index 100% rename from doc/changelog.d/3636.documentation.md rename to doc/changelog.d/3636.miscellaneous.md From 33a7ea9f8842655f3812bb93a172ef203bad2045 Mon Sep 17 00:00:00 2001 From: moe-ad Date: Wed, 8 Jan 2025 07:20:35 +0100 Subject: [PATCH 7/7] feat: added unit tests --- tests/conftest.py | 18 ++++++++++++++++++ tests/test_mesh_grpc.py | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index 660a088a23..4bc9e748df 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1154,6 +1154,24 @@ def create_geometry(mapdl): return areas, keypoints +@pytest.fixture(scope="function") +def two_dimensional_mesh(mapdl, cleared): + length = 4 + height = 1 + thickness = 0.2 + mesh_size = 0.1 + + mapdl.prep7() + + mapdl.r(r1=thickness) + mapdl.et(1, "PLANE182", kop3=3, kop6=0) + mapdl.rectng(0, length, 0, height) + mapdl.mshkey(1) + mapdl.mshape(0, "2D") + mapdl.esize(mesh_size) + mapdl.amesh("ALL") + + @pytest.fixture def query(mapdl, cleared): return mapdl.queries diff --git a/tests/test_mesh_grpc.py b/tests/test_mesh_grpc.py index a0aaf421f7..e914974b22 100644 --- a/tests/test_mesh_grpc.py +++ b/tests/test_mesh_grpc.py @@ -317,3 +317,42 @@ def test_nodal_rotation(mapdl, cleared): ] ) assert np.allclose(nrotation_ref, nrotations[:7, :]) + + +def test_esln(mapdl, two_dimensional_mesh): + mapdl.nsel("S", "LOC", "X", 0) + selected_ids = mapdl.esln("S", 0) + expected_selected_ids = np.array([1, 41, 81, 121, 161, 201, 241, 281, 321, 361]) + assert all(selected_ids == expected_selected_ids) + + +def test_nsle(mapdl, two_dimensional_mesh): + mapdl.esel("S", "CENT", "X", 0, 0.1) + selected_ids = mapdl.nsle("S") + expected_selected_ids = np.array( + [ + 1, + 3, + 52, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + ] + ) + assert all(selected_ids == expected_selected_ids)