From 7dfcc480ba1e19bd3232349fc733caef94034292 Mon Sep 17 00:00:00 2001 From: stainer_t Date: Mon, 8 Sep 2025 13:48:49 +0200 Subject: Initial commit from Polytechnique Montreal --- Dragon/src/LIBXS1.f | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Dragon/src/LIBXS1.f (limited to 'Dragon/src/LIBXS1.f') diff --git a/Dragon/src/LIBXS1.f b/Dragon/src/LIBXS1.f new file mode 100644 index 0000000..767fd5a --- /dev/null +++ b/Dragon/src/LIBXS1.f @@ -0,0 +1,44 @@ +*DECK LIBXS1 + SUBROUTINE LIBXS1(CFILNA,NEL) +* +*----------------------------------------------------------------------- +* +*Purpose: +* Initialize dimensions for depletion data with APOLIB-XSM. +* +*Copyright: +* Copyright (C) 2014 Ecole Polytechnique de Montreal +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU Lesser General Public +* License as published by the Free Software Foundation; either +* version 2.1 of the License, or (at your option) any later version. +* +*Author(s): A. Hebert +* +*Parameters: input +* CFILNA APOLIB-XSM file name. +* +*Parameters: output +* NEL number of isotopes on library. +* +*----------------------------------------------------------------------- +* + USE GANLIB +*---- +* SUBROUTINE ARGUMENTS +*---- + CHARACTER CFILNA*(*) + INTEGER NEL +*---- +* Local variables +*---- + TYPE(C_PTR) IPAP +* + CALL LCMOP(IPAP,CFILNA,2,2,0) + CALL LCMSIX(IPAP,'PHEAD',1) + CALL LCMLEN(IPAP,'NOM',NV,ITYLCM) + NEL=NV/5 + CALL LCMSIX(IPAP,' ',2) + CALL LCMCL(IPAP,1) + RETURN + END -- cgit v1.2.3