Skip to content

Commit

Permalink
[Parmmg] Replace git lfs with zip (KratosMultiphysics#81)
Browse files Browse the repository at this point in the history
* Splitting skin into zips

* Adding check to make sure skin building was unzipped

* Adding unzip instruction to reade

* Delete .gitattributes
  • Loading branch information
marcnunezc authored Dec 10, 2020
1 parent eaf1694 commit 29b5bf1
Show file tree
Hide file tree
Showing 11 changed files with 14,907 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@

**Application dependencies:** `FluidDynamicsApplication`, `LinearSolversApplications`, `MeshingApplication`, `MetisApplication`, `TrilinosApplication`

To run this example execute:
To run this example, please first unzip the file:

[skin_building.zip](source/skin_building.zip)

And then execute:

export OMP_NUM_THREADS=1
mpirun -n nprocs python3 MainKratos.py
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,10 @@ def __init__(self,model,project_parameters, remeshing_parameters):
self.skin_model_part.ProcessInfo.SetValue(KratosMultiphysics.DOMAIN_SIZE, self.project_parameters["solver_settings"]["domain_size"].GetInt())
self.skin_model_part.AddNodalSolutionStepVariable(KratosMultiphysics.VELOCITY)
self.skin_model_part.AddNodalSolutionStepVariable(KratosMultiphysics.FLAG_VARIABLE)

KratosMultiphysics.ModelPartIO('skin_building').ReadModelPart(self.skin_model_part)
try:
KratosMultiphysics.ModelPartIO('skin_building').ReadModelPart(self.skin_model_part)
except:
raise(Exception("skin_building.mdpa not found. Please check that you have unzipped the file skin_building.zip"))

def InitializeGeometry(self):
# Computing continuous distance required to compute the metric (only on intersected elements)
Expand Down

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 29b5bf1

Please sign in to comment.