Skip to content

Commit a13dfe8

Browse files
committed
fix parallel simulations counter
1 parent 4266832 commit a13dfe8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

femmt/thermal/thermal_simulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def create_windings(winding_tags: list, k_windings: float, winding_losses, condu
205205
if tag not in tag_counters: # The counter is needed here to create a single region for every turn in case of parallel windings
206206
tag_counters[tag] = 0
207207
else:
208-
tag_counters[tag] += 1
208+
tag_counters[tag] += 1000
209209
regions[name] = tag + tag_counters[tag]
210210

211211
# Needs to be added. [:-2] removes the last ', '

0 commit comments

Comments
 (0)