Anomalie #144 » EcrireChampTemp.py
1 |
# -*- coding: utf-8 -*-
|
---|---|
2 |
"""
|
3 |
Created on Mon Jun 26 11:34:35 2017
|
4 |
|
5 |
@author: Frank
|
6 |
"""
|
7 |
|
8 |
import sys |
9 |
import numpy as np |
10 |
|
11 |
nombre_noeuds = 121 |
12 |
nom_fichier = 'champTemp.txt' |
13 |
|
14 |
val_temp = 10 |
15 |
|
16 |
temp_inf = 10 |
17 |
temp_sup = 20 |
18 |
|
19 |
texte = 'N_to champ_de:\n' |
20 |
for i in range(nombre_noeuds): |
21 |
# temp = val_temp
|
22 |
temp = np.random.random_sample()*(temp_sup-temp_inf) + temp_inf |
23 |
texte += ''' ' TEMP= {:.0f} ' # noeud {:4d}\n'''.format(temp, i+1) |
24 |
|
25 |
texte+= 'fin_champ_de_ \n\n' |
26 |
|
27 |
|
28 |
# Ecriture du fichier de température
|
29 |
with open(nom_fichier,'w') as fichier: |
30 |
fichier.write(texte) |