SevatarOoi commited on
Commit
976b0e8
·
verified ·
1 Parent(s): 248d44b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ x__, y__, z__ = np.meshgrid(x_, y_, z_, indexing='ij')
41
 
42
  x, y, z = np.where(x__ + y__ + z__ == 100)
43
  max(x_[x] + y_[y] + z_[z])
44
- generation_mix = np.concatenate([x_[x].reshape(x.shape[0],1),y_[y].reshape(x.shape[0],1),z_[z].reshape(x.shape[0],1)],1)
45
 
46
  image_options = ["distribution.png", "contribution.png", "voltage_violations.png"]
47
 
 
41
 
42
  x, y, z = np.where(x__ + y__ + z__ == 100)
43
  max(x_[x] + y_[y] + z_[z])
44
+ generation_mix = np.concatenate([x_[x].reshape(x.shape[0],1),z_[z].reshape(x.shape[0],1),y_[y].reshape(x.shape[0],1)],1)
45
 
46
  image_options = ["distribution.png", "contribution.png", "voltage_violations.png"]
47