From d0eaaad200370b09f0919cd60aad63b801722fb5 Mon Sep 17 00:00:00 2001 From: dwarning Date: Mon, 26 Oct 2020 13:21:16 +0100 Subject: [PATCH] more reasonable message for temperature limiting case --- src/spicelib/devices/devsup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spicelib/devices/devsup.c b/src/spicelib/devices/devsup.c index 5bc3c684a..a278ab69f 100644 --- a/src/spicelib/devices/devsup.c +++ b/src/spicelib/devices/devsup.c @@ -163,8 +163,8 @@ DEVlimitlog( *check = 0; if (isnan (deltemp) || isnan (deltemp_old)) { - fprintf(stderr, "Alberto says: YOU TURKEY! The limiting function received NaN.\n"); - fprintf(stderr, "New prediction returns to 0.0!\n"); + fprintf(stderr, "The temperature limiting function received NaN.\n"); + fprintf(stderr, "Please check your power dissipation and improve your heat sink Rth!\n"); deltemp = 0.0; *check = 1; }