* Procedures
+ Extended submodels to heat transfer analyses.
* Materials
+ Introduced the *DAMAGE INITIATION keyword.
* Elements
+ Correction to the C3D8I-element.
+ Kept the node numbering while smoothing an existing mesh using
the *REFINE MESH,SMOOTHING ONLY keyword.
+ Allowed for the use of composite shells in *HEAT TRANSFER
calculations.
* Boundary conditions
+ Definition of a linear temperature distribution on a
*TEMPERATURE or *BOUNDARY card.
+ Allowed for contact within cyclic symmetry calculations using
the *CYCLIC SYMMETRY MODEL,CONTACT card.
+ Axisymmetric results from a global model can be used as
boundary conditions for a three-dimensional submodel.
+ The first term in an *EQUATION can be a node set. As many
equations are generated as nodes in the set.
* For a full list of changes see the included LOGBOOK.
- Rebase ccx-2.16-build.patch
- Add 0001-Fix-return-value-in-readnewmesh.patch
OBS-URL: https://build.opensuse.org/package/show/science/ccx?expand=0&rev=21
26 lines
712 B
Diff
26 lines
712 B
Diff
From 9d1bd9e585824efd386cb5fe488c11e3ec21c297 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
|
|
Date: Thu, 19 Feb 2026 02:12:15 +0100
|
|
Subject: [PATCH] Fix return value in readnewmesh
|
|
|
|
---
|
|
src/readnewmesh.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/ccx_2.23/src/readnewmesh.c b/ccx_2.23/src/readnewmesh.c
|
|
index 7cc45f2..52b53cb 100644
|
|
--- a/src/readnewmesh.c
|
|
+++ b/src/readnewmesh.c
|
|
@@ -465,7 +465,7 @@ void readnewmesh(char *jobnamec,ITG *nboun,ITG *nodeboun,ITG *iamboun,
|
|
*ipkonp=ipkon;*lakonp=lakon;*iamt1p=iamt1;*ipobodyp=ipobody;
|
|
*iprfnp=iprfn;*konrfnp=konrfn;*ratiorfnp=ratiorfn;
|
|
|
|
- return NULL;
|
|
+ return;
|
|
|
|
}
|
|
|
|
--
|
|
2.53.0
|
|
|