Re: [deal.II] extrude by providing z-coordinates

2018-04-05 Thread Weixiong Zheng
PR has been approved and will be merged sometime. Thanks for fill the project name into Applications entry. 在 2018年4月5日星期四 UTC-7下午3:48:05,Wolfgang Bangerth写道: > > > Weixiong, > > > By instruction, it's actually more for the testing. Maybe I will just > > follow how the other functions are tested

Re: [deal.II] extrude by providing z-coordinates

2018-04-05 Thread Wolfgang Bangerth
Weixiong, By instruction, it's actually more for the testing. Maybe I will just follow how the other functions are tested. Yes -- my took of choice is generally to do grep -r merge_triangulations tests/*/*cc to find out which tests use a given function (here, merge_triangulations()). I the

Re: [deal.II] extrude by providing z-coordinates

2018-04-04 Thread Weixiong Zheng
Sir The Issue 6158 and 6159 have been opened for the proposed functionalities. Tell you if you have any thought. By instruction, it's actually more for the testing. Maybe I will just follow how the other functions are tested. By the way, I am at UC Berkeley leading an open source group project

Re: [deal.II] extrude by providing z-coordinates

2018-04-04 Thread Wolfgang Bangerth
Weixiong, Yes. It then allows non-uniform slicing along z-axis. Great. Yes, please do submit a pull request for this function! (And let us know if you need help figuring out how to create pull requests! I know we have a how-to file somewhere, but I forgot where exactly it is. Someone?)

Re: [deal.II] extrude by providing z-coordinates

2018-04-04 Thread Weixiong Zheng
Sir, Yes. It then allows non-uniform slicing along z-axis. Also, I am wondering if you guys are interested in making triangulation based on a basic one for repeated structure as shown in the attachment. I have to do this for my project but didn't find a function so I did something like copy->s

Re: [deal.II] extrude by providing z-coordinates

2018-04-04 Thread Wolfgang Bangerth
On 04/04/2018 02:40 PM, Weixiong Zheng wrote: I found out there is not a function for extruding triangulation by exact position of cell vertices along z-axis. So I wrote a piece of code by modifying | GridGenerator::extrude_triangulation. | The attachment is an example of what it does. Did f

[deal.II] extrude by providing z-coordinates

2018-04-04 Thread Weixiong Zheng
Hi, I found out there is not a function for extruding triangulation by exact position of cell vertices along z-axis. So I wrote a piece of code by modifying GridGenerator::extrude_triangulation. The attachment is an example of what it does. Did for my own needs. Just wonder if I can contribute