CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

How do I convert scalar to word

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes
  • 2 Post By bala_gk1988

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 7, 2016, 04:29
Default How do I convert scalar to word
  #1
New Member
 
Balajee
Join Date: Dec 2013
Posts: 13
Rep Power: 12
bala_gk1988 is on a distinguished road
I want to convert a number to a string in openfoam.

Code:
scalar count(11);
    word fieldName(count);
    Info << fieldName << endl;
If I execute the above piece of code I get the following error

word::stripInvalid() called for word
For debug level (= 2) > 1 this is considered fatal
Aborted (core dumped)

What seems to be the problem here?
Thankyou
bala_gk1988 is offline   Reply With Quote

Old   January 8, 2016, 02:11
Default
  #2
New Member
 
Balajee
Join Date: Dec 2013
Posts: 13
Rep Power: 12
bala_gk1988 is on a distinguished road
Never mind. Converting scalar to word should be done like this

Code:
word fieldName(name(i));
SailorLiu and mbookin like this.
bala_gk1988 is offline   Reply With Quote

Old   September 28, 2019, 14:33
Default name function
  #3
New Member
 
hamed eshraghi
Join Date: Jan 2016
Posts: 3
Rep Power: 10
hamedhiv is on a distinguished road
you can use name function. like this:
Code:
scalar a(0);

word b =Foam::name(a);
the name function defined here

$FOAM_SRC/OpenFOAM/primitives/ints
hamedhiv is offline   Reply With Quote

Reply

Tags
scalar word conversion


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
problem during mpi in server: expected Scalar, found on line 0 the word 'nan' muth OpenFOAM Running, Solving & CFD 3 August 27, 2018 04:18
Issue symmetryPlane 2.5d extruded airfoil simulation 281419 OpenFOAM Running, Solving & CFD 5 November 28, 2015 13:09
Diverging solution in transonicMRFDyMFoam tsalter OpenFOAM Running, Solving & CFD 30 July 7, 2014 06:20
compressible flow in turbocharger riesotto OpenFOAM 50 May 26, 2014 01:47
is internalField(U) equivalent to zeroGradient? immortality OpenFOAM Running, Solving & CFD 7 March 29, 2013 01:27


All times are GMT -4. The time now is 22:48.