Hello,
You can not use ischtp = 2 with steady flow algorithm ! You should use unsteady flow option with SIMPLEC algorithm.
Search found 118 matches
- Tue Sep 16, 2014 7:45 pm
- Forum: code_saturne usage
- Topic: Second order time scheme
- Replies: 16
- Views: 18666
- Mon Sep 15, 2014 9:33 pm
- Forum: code_saturne usage
- Topic: Second order time scheme
- Replies: 16
- Views: 18666
Re: Second order time scheme
You can not use ischtp = 2 with all physical models (eg. RANS models - except Rij-e). In case of use ischtp =2 with incompatible options the error messages should be proper.
You could post your setup. I will check.
You could post your setup. I will check.
- Sat Sep 13, 2014 11:23 am
- Forum: code_saturne usage
- Topic: How to stop the code ?
- Replies: 4
- Views: 7488
Re: How to stop the code ?
It will be more convenient to set ntmabs = ntcabs when your residual is small enough (do this in cs_user_extra_operations.f90).
Regards,
Regards,
- Sat Sep 13, 2014 11:19 am
- Forum: code_saturne usage
- Topic: Second order time scheme
- Replies: 16
- Views: 18666
Re: Second order time scheme
The error appears only when you activate ischtp = 2 ?
- Wed Sep 10, 2014 4:01 pm
- Forum: code_saturne usage
- Topic: Shear stress in user subroutine.
- Replies: 4
- Views: 5496
Re: Shear stress in user subroutine.
Ok.
So you can use something like this to compute velocity gradient:
!===========================================
! Decl
integer inc , iprev
double precision, allocatable, dimension(:,:,:) :: gradv
!============================================
! Code
allocate(gradv(3,3,ncelet))
inc ...
So you can use something like this to compute velocity gradient:
!===========================================
! Decl
integer inc , iprev
double precision, allocatable, dimension(:,:,:) :: gradv
!============================================
! Code
allocate(gradv(3,3,ncelet))
inc ...
- Wed Sep 10, 2014 2:59 pm
- Forum: code_saturne usage
- Topic: Second order time scheme
- Replies: 16
- Views: 18666
Re: Second order time scheme
Could you attach your listing here?
- Tue Sep 09, 2014 4:22 pm
- Forum: code_saturne usage
- Topic: Second order time scheme
- Replies: 16
- Views: 18666
Re: Second order time scheme
And 20 lines above this call stack?
- Tue Sep 09, 2014 9:53 am
- Forum: code_saturne usage
- Topic: Second order time scheme
- Replies: 16
- Views: 18666
Re: Second order time scheme
There is no error message in listing ?
- Tue Sep 09, 2014 9:52 am
- Forum: code_saturne usage
- Topic: Shear stress in user subroutine.
- Replies: 4
- Views: 5496
Re: Shear stress in user subroutine.
Hello,
You have to (re)compute it manually. You can use cs_user_extra_operation.f90 to do this.
You must use gradient function to compute velocity gradient (the gradient function name is dependant of ur Code_Saturne version).
Which version are you using ?
Regards,
You have to (re)compute it manually. You can use cs_user_extra_operation.f90 to do this.
You must use gradient function to compute velocity gradient (the gradient function name is dependant of ur Code_Saturne version).
Which version are you using ?
Regards,
- Thu Sep 04, 2014 7:24 pm
- Forum: code_saturne usage
- Topic: Second order time scheme
- Replies: 16
- Views: 18666
Re: Second order time scheme
Hello,
In which version of Code_Saturne?
The solution is probably in user doc.
In which version of Code_Saturne?
The solution is probably in user doc.