- 
                Notifications
    
You must be signed in to change notification settings  - Fork 49
 
Add_minimalsurface #182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Open
      
      
            indyalardjane
  wants to merge
  6
  commits into
  JuliaSmoothOptimizers:main
  
    
      
        
          
  
    
      Choose a base branch
      
     
    
      
        
      
      
        
          
          
        
        
          
            
              
              
              
  
           
        
        
          
            
              
              
           
        
       
     
  
        
          
            
          
            
          
        
       
    
      
from
indyalardjane:add_minimalsurface
  
      
      
   
  
    
  
  
  
 
  
      
    base: main
Could not load branches
            
              
  
    Branch not found: {{ refName }}
  
            
                
      Loading
              
            Could not load tags
            
            
              Nothing to show
            
              
  
            
                
      Loading
              
            Are you sure you want to change the base?
            Some commits from the old base branch may be removed from the timeline,
            and old review comments may become outdated.
          
          
  
     Open
                    Add_minimalsurface #182
Changes from 5 commits
      Commits
    
    
            Show all changes
          
          
            6 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      e70da0d
              
                add hs219
              
              
                indyalardjane 84b6418
              
                add minimalsurface
              
              
                indyalardjane bf6cdef
              
                add minimal surface
              
              
                indyalardjane c3794a9
              
                supp hs219
              
              
                indyalardjane 515f009
              
                add_minimalsurface
              
              
                indyalardjane 4c3484d
              
                update-minsurfo
              
              
                indyalardjane File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,105 @@ | ||
| using Plots | ||
| using ADNLPModels, NLPModels, NLPModelsIpopt, DataFrames, LinearAlgebra, Distances, SolverCore, PyPlot | ||
| 
     | 
||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| function minimalsurface(; n::Int = default_nvar, type::Val{T} = Val(Float64), kwargs...) where {T} | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| 
     | 
||
| # domain definition | ||
| xmin = T(0.) | ||
| xmax = T(1.) | ||
| ymin = T(0.) | ||
| ymax = T(1.) | ||
| 
     | 
||
| # Definition of the mesh | ||
| nx = 20 # number of points according to the direction x | ||
| ny = 20 # number of points according to the direction y | ||
| 
     | 
||
| 
     | 
||
| x_mesh = LinRange(xmin, xmax, nx) # coordinates of the mesh points x | ||
| y_mesh = LinRange(ymin, ymax, ny) # coordinates of the mesh points y | ||
| 
     | 
||
| v_D = zeros(nx,ny) # Surface matrix initialization | ||
| for i in 1:nx | ||
| for j in 1:ny | ||
| v_D[i, j] = T(1 - (2 * x_mesh[i] - 1)^2) | ||
| end | ||
| end | ||
| 
     | 
||
| 
     | 
||
| function Objective(v) | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| v_reshape = reshape(v, (nx, ny)) # vector to matrix conversion | ||
| hx = T(1/nx) # step on the x axis | ||
| hy = T(1/ny) # step on the y axis | ||
| S = T(0.) # sum initialization | ||
| # Calculation of the gradient according to x | ||
| for i in 1:nx | ||
| for j in 1:ny | ||
| if i == 1 | ||
| gi = T((v_reshape[i+1, j] - v_reshape[i, j])/hx) | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| elseif i == nx | ||
| gi = T((v_reshape[i, j] - v_reshape[i-1, j])/hx) | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| else | ||
| gi = T((v_reshape[i+1, j] - v_reshape[i, j])/(2 * hx)) | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| end | ||
| # Calculation of the gradient according to x | ||
| if j == 1 | ||
| gj = T((v_reshape[i, j+1] - v_reshape[i, j])/hy) | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| elseif j == ny | ||
| gj = T((v_reshape[i, j] - v_reshape[i, j-1])/hy) | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| else | ||
| gj = T((v_reshape[i, j+1] - v_reshape[i, j])/(2 * hy)) | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| end | ||
| 
     | 
||
| s = T(hx * hy * (sqrt(1 + (gi^2) +(gj)^2))) # Approximation of the derivative with the method of rectangles | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| S = S + s # Update the value of S | ||
| end | ||
| end | ||
| return(S) | ||
| end | ||
| 
     | 
||
| function constraints(v) | ||
| v_reshape = reshape(v, (nx, ny)) # vector to matrix conversion | ||
| c = similar(v_reshape, nx*ny + 2*(nx +ny)) # creating a constraint vector | ||
| index = 1 | ||
| v_L = zeros(T, nx,ny) # Creation of an obstacle called v_L | ||
| for i in 1:nx | ||
| for j in 1:ny | ||
| if norm(x_mesh[i]-(1/2)) ≤ 1/4 && norm(y_mesh[j]-(1/2)) ≤ 1/4 | ||
| v_L[i, j] = T(1.) # Update the value of v_L according to the values of x and y | ||
| end | ||
| end | ||
| end | ||
| for i in 1:nx | ||
| for j in 1:ny | ||
| c[index] = T(v_reshape[i, j] - v_L[i, j]) # Constraint that the surface must be above the obstruction | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| index = index + 1 | ||
| end | ||
| end | ||
| for j in 1:ny | ||
| c[index] = T(v_reshape[1, j]) # Constraint: when x=1 or x=nx, the surface is set to 0 | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| index = index + 1 | ||
| c[index] = T(v_reshape[nx, j]) # Constraint: when x=1 or x=nx, the surface is set to 0 | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| index = index + 1 | ||
| end | ||
| for i in 1:nx | ||
| c[index] = T(v_reshape[i, 1] - 1 + (2 * i -1)^2) # Constraint: when y=1 or y=ny, the surface follows the function " 1 + (2 * x -1)^2 " | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| index = index + 1 | ||
| c[index] = T(v_reshape[i, ny] - 1 + (2 * i -1)^2) # Constraint: when y=1 or y=ny, the surface follows the function " 1 + (2 * x -1)^2 " | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| index = index + 1 | ||
| 
     | 
||
| end | ||
| return c | ||
| end | ||
| 
     | 
||
| 
     | 
||
| lcon = zeros(T, nx * ny + 2 * nx + 2 * ny) # Lower bound all equal to 0 | ||
| ucon = zeros(T, nx * ny + 2 * nx + 2 * ny) # Creation of the upper bound vector | ||
| ucon[1 : ny * nx] = Inf * ones(T, nx * ny) # first part equal to infinity | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| ucon[nx * ny + 1 : end] = zeros(T, 2 * nx + 2 * ny) # second part part equal to zero | ||
| 
     | 
||
| v = vec(v_D) #convert to vector | ||
| 
     | 
||
| nlp = ADNLPModel(Objective, v, constraints, lcon, ucon) | ||
| return nlp | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| end | ||
| 
     | 
||
| 
     | 
||
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| minimalsurface_meta = Dict( | ||
                
      
                  tmigot marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| :nvar => 400, | ||
| :variable_nvar => false, | ||
| :ncon => 480, | ||
| :variable_ncon => false, | ||
| :minimize => true, | ||
| :name => "minimalsurface", | ||
| :has_equalities_only => false, | ||
| :has_inequalities_only => false, | ||
| :has_bounds => false, | ||
| :has_fixed_variables => false, | ||
| :objtype => :other, | ||
| :contype => :general, | ||
| :best_known_lower_bound => -Inf, | ||
| :best_known_upper_bound => Inf, | ||
| :is_feasible => missing, | ||
| :defined_everywhere => missing, | ||
| :origin => :unknown, | ||
| 
     | 
||
| ) | ||
| get_minimalsurface_nvar(; n::Integer = default_nvar, kwargs...) = 400 | ||
| get_minimalsurface_ncon(; n::Integer = default_nvar, kwargs...) = 480 | ||
| get_minimalsurface_nlin(; n::Integer = default_nvar, kwargs...) = 0 | ||
| get_minimalsurface_nnln(; n::Integer = default_nvar, kwargs...) = 480 | ||
| get_minimalsurface_nequ(; n::Integer = default_nvar, kwargs...) = 80 | ||
| get_minimalsurface_nineq(; n::Integer = default_nvar, kwargs...) = 400 | ||
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.