Menu

Tree [8d9c53] master /
 History

HTTPS access


File Date Author Commit
 C_files 2011-11-02 Rob Simpson Rob Simpson [bc8755] Added a simple scipt for plotting Bsplines.
 dat_files 2011-11-02 Rob Simpson Rob Simpson [12ba5c] Merge remote-tracking branch 'origin/master'
 .gitignore 2011-11-02 Rob Simpson Rob Simpson [bc8755] Added a simple scipt for plotting Bsplines.
 BsplineBasis.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 BsplineBasisHighOrder.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 DBIEkernels.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 NURBSbasis_matlab.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 README 2011-03-23 Rob Simpson (Linux) Rob Simpson (Linux) [a5d170] Increased the number of gauss points to ensure ...
 TBIEkernels.m 2011-05-27 Rob Simpson Rob Simpson [0374a0] The internal stress function layout is there, b...
 assignDirichletAndNeumannNodes.m 2012-04-16 Rob Simpson Rob Simpson [8d9c53] Some changes by Rob
 calculateJumpTerm.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 calculateL2BoundaryNorm.m 2011-05-27 Rob Simpson Rob Simpson [e75695] Put the uniaxial tension test into place for te...
 convertToParamSpace.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 convertToParentCoordSpace.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 findInternalStress.m 2011-05-27 Rob Simpson Rob Simpson [7df841] I have just fixed the problem with the routine ...
 findNormalsAtCollocationPoints.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 generateBEMmesh.m 2012-04-16 Rob Simpson Rob Simpson [8d9c53] Some changes by Rob
 getExactDisplacements.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 getExactStressTensor.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 getKernelParameters.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 getNormal.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 getWedgeDisplacements.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 getWedgeStresses.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 integrateExactTractionTerm.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 integrateGsubmatrix_Telles.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 integrateHGsubmatrices_GLQ.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 integrateHsubmatrixSST.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 isoBEM.m 2012-04-16 Rob Simpson Rob Simpson [8d9c53] Some changes by Rob
 lgwt.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 mapTractionDofToGlobalDof.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...
 plotDeformedProfile.m 2012-04-16 Rob Simpson Rob Simpson [8d9c53] Some changes by Rob
 plotPrescribedTractions.m 2011-03-23 Rob Simpson Rob Simpson [871da9] All the matlab files are being added along with...

Read Me

This is the README file for isogeometric BEM as coded by Rob Simpson at Cardiff University 2011

It contains matlab code which describes both the geometry and the unknown fields of 2D elastostatic problems using NURBS - the commonly used parametric functions in CAD software.

Importantly, we need to compile some C code before we can get these matlab routines to run. So before we go playing with these scripts, do the following:

1. change into the directory C_files
2. run the command 'mex NURBSbasis.c NURBS.c'
3. run the command 'mex NURBSinterpolation.c NURBS.c'

The last two create 'mex' files which are compiled code allowing matlab to interface with nice and quick C code. The reason I have done this is because

1. The NURBS code is given in C in the book by Piegl and Tiller
2. Due to the recursive nature of the formulas, it is much faster to do this computation in C rather than matlab.

Once you have done this, you can change back into the isoBEM directory and run the script isoBEM.m - you should see a bent spanner!